Skip to content

Commit

Permalink
reorder steps for ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed May 5, 2019
1 parent 20f66d8 commit b76211e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions 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)
Expand Down
5 changes: 2 additions & 3 deletions package.json
Expand Up @@ -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",
Expand All @@ -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/",
Expand Down

0 comments on commit b76211e

Please sign in to comment.