This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
set -euo pipefail | |
# This script performs a subgraph check and generates a markdown file from Rover's JSON output | |
# Change the following line to refer to your graph ref, schema, and subgraph name | |
CHECK_OUTPUT=$(rover subgraph check my-graph --schema ./products.graphql --name products --output json) || true | |
CHECK_SUCCESS=$(echo $CHECK_OUTPUT | jq '.data.success') | |
if [ $CHECK_SUCCESS = "true" ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.w3c.dom.Document | |
import org.xml.sax.InputSource | |
import java.io.File | |
import java.io.IOException | |
import java.io.StringReader | |
import java.math.BigInteger | |
import java.util.concurrent.TimeUnit | |
import javax.xml.parsers.DocumentBuilderFactory | |
import javax.xml.xpath.XPathConstants | |
import javax.xml.xpath.XPathFactory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wed Dec 11 19:01:40 UTC 2019 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm info it worked if it ends with ok | |
npm verb cli [ 'C:\\Program Files\\nodejs\\node.exe', | |
npm verb cli 'C:\\Users\\buschs1\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js', | |
npm verb cli 'install', | |
npm verb cli '-ddd' ] | |
npm info using npm@3.8.6 | |
npm info using node@v5.10.0 | |
npm sill loadCurrentTree Starting | |
npm sill install loadCurrentTree | |
npm sill install readLocalPackageData |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var args = require('yargs').argv; | |
var browserSync = require('browser-sync'); | |
var del = require('del'); | |
var path = require('path'); | |
var assign = require('lodash.assign'); | |
var config = require('./gulp.config')(); | |
var $ = require('gulp-load-plugins')({lazy: true}); | |
var port = process.env.PORT || config.defaultPort; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gulp from 'gulp'; | |
import { argv as args } from 'yargs'; | |
import browserSync from 'browser-sync'; | |
import del from 'del'; | |
import path from 'path'; | |
import assign from 'lodash.assign'; | |
import configRaw from './gulp.config'; | |
const config = configRaw(); | |
import gulpPlugins from 'gulp-load-plugins'; | |
const $ = gulpPlugins({lazy: true}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#export WORKSPACE=/var/lib/jenkins/jobs/Build_CM12/workspace/builds | |
#export WORKSPACE=~/Downloads | |
export WORKSPACE=~/Dropbox/CM | |
export CHANGESPATH=$WORKSPACE/CHANGES-$(date -u +%Y%m%d).txt | |
rm $CHANGESPATH 2>/dev/null | |
# export CM_NIGHTLY | |
# get the name of the file we just built | |
lastBuild=$(ls -lt $WORKSPACE/cm*.zip | sed -e "s/ / /" | cut -d ' ' -f9 | head -1) |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1;32;40mC:\Users\buschs1\Desktop\npmBug | |
[1;30;40mλ [0mnpm install -dd | |
npm info it worked if it ends with ok | |
npm verb cli [ 'C:\\Program Files\\nodejs\\\\node.exe', | |
npm verb cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
npm verb cli 'install', | |
npm verb cli '-dd' ] | |
npm info using npm@2.11.0 | |
npm info using node@v0.12.4 | |
npm verb readDependencies loading dependencies from C:\Users\buschs1\Desktop\npmBug\package.json |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1;32;40mC:\Users\buschs1\Desktop\npmBug | |
[1;30;40mλ [0mnpm install -ddd | |
npm info it worked if it ends with ok | |
npm verb cli [ 'C:\\Program Files\\nodejs\\\\node.exe', | |
npm verb cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
npm verb cli 'install', | |
npm verb cli '-ddd' ] | |
npm info using npm@2.9.1 | |
npm info using node@v0.12.2 | |
npm verb node symlink C:\Program Files\nodejs\\node.exe |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1;32;40mC:\Users\buschs1\Desktop\npmBug | |
[1;30;40mλ [0mnode -v | |
v0.12.2 | |
[1;32;40mC:\Users\buschs1\Desktop\npmBug | |
[1;30;40mλ [0mnpm install -dd | |
npm info it worked if it ends with ok | |
npm verb cli [ 'C:\\Program Files\\nodejs\\\\node.exe', | |
npm verb cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
npm verb cli 'install', |
NewerOlder