Review cleanup

This commit is contained in:
Rachel Fenichel
2019-10-21 10:46:34 -07:00
parent e716283191
commit 1e2eb6bd60
2 changed files with 5 additions and 14 deletions

View File

@@ -20,19 +20,19 @@
"build": "gulp build",
"build:debug": "gulp build-core --verbose > build-debug.log 2>&1 && tail -3 -r build-debug.log",
"bump": "npm version 3.$(date +'%Y%m%d').0",
"version": "gulp build && git add -A",
"preversion": "gulp preversion",
"postversion": "gulp postversion",
"lint": "eslint .",
"package": "gulp package",
"postversion": "gulp postversion",
"prepare": "npm run package",
"preversion": "gulp preversion",
"release": "gulp release",
"test": "concurrently 'npm run test:prepare' 'sleep 5 && npm run test:run'",
"test:run": "tests/run_all_tests.sh",
"test:prepare": "npm run test:setupselenium && npm run test:startselenium",
"test:run": "tests/run_all_tests.sh",
"test:setupselenium": "selenium-standalone install --config=./tests/scripts/selenium-config.js",
"test:startselenium": "selenium-standalone start --config=./tests/scripts/selenium-config.js",
"typings": "gulp typings"
"typings": "gulp typings",
"version": "gulp build && git add -A"
},
"main": "./index.js",
"umd": "./blockly.min.js",