diff --git a/CHANGELOG.md b/CHANGELOG.md index f1d13957..24b6cd62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +* [[`20f66d8767`](https://github.com/StoneCypher/jssm/commit/20f66d8767)] - Let's reinstrument Travis (John Haugeland) +* [[`7b92287e89`](https://github.com/StoneCypher/jssm/commit/7b92287e89)] - Remove flow typechecking step (John Haugeland) * [[`4d4538e894`](https://github.com/StoneCypher/jssm/commit/4d4538e894)] - 5.14.1 let's start cleaning up (John Haugeland) * [[`3dac8f22fe`](https://github.com/StoneCypher/jssm/commit/3dac8f22fe)] - Update issue templates (John Haugeland) * [[`06f3d985b8`](https://github.com/StoneCypher/jssm/commit/06f3d985b8)] - Update issue templates (John Haugeland) diff --git a/package.json b/package.json index 88959ba7..bcc4fb1e 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,7 @@ "description": "A Javascript finite state machine (FSM) with a terse DSL and a simple API. Well tested, and typed with Flowtype. MIT License.", "main": "dist/jssm.es5.cjs.js", "scripts": { - "test": "nyc ava src/js/tests/*.js", - "test_verbose": "ava src/js/tests/*.js -v", + "test": "npm run make && nyc ava src/js/tests/*.js -v", "removedir": "rimraf build -f && rimraf dist -f && rimraf docs -f", "createdir": "mkdir build && mkdir dist && mkdir docs && cd docs && mkdir docs && cd ..", "clean": "npm run removedir && rm -f src/js/jssm-dot.js && npm run createdir", @@ -36,7 +35,7 @@ "coverage": "nyc report --reporter=text-lcov | coveralls", "vet": "npm run eslint && npm run audit", "audit": "text_audit -t major wasteful any mixed fixme checkme testme stochable todo comeback whargarbl", - "build": "npm run make && npm run vet && npm run minify && npm run docs && npm run site && npm run dist", + "build": "npm run vet && npm run test && npm run minify && npm run docs && npm run site && npm run dist", "zminify": "uglifyjs ./build/jssm.es5.cjs.js -o ./build/jssm.es5.cjs.min.js --compress", "minify": "echo Minify skipped", "dist": "cp build/jssm.es5.cjs.* dist/",