From 7b92287e8921d023a1510553ca655ad712c6c7d2 Mon Sep 17 00:00:00 2001 From: John Haugeland Date: Sat, 4 May 2019 16:55:50 -0700 Subject: [PATCH] Remove flow typechecking step --- CHANGELOG.md | 1 + dist/jssm.es5.cjs.js | 2 +- docs/lib/index.html | 4 ++-- package.json | 6 ++---- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab046cb6..f1d13957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* [[`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) * [[`5d9a3b6d43`](https://github.com/StoneCypher/jssm/commit/5d9a3b6d43)] - Update issue templates (John Haugeland) diff --git a/dist/jssm.es5.cjs.js b/dist/jssm.es5.cjs.js index fce64b3f..6a55ba28 100644 --- a/dist/jssm.es5.cjs.js +++ b/dist/jssm.es5.cjs.js @@ -978,7 +978,7 @@ var reduce_to_639 = require('reduce-to-639-1').reduce; var parse = require('./jssm-dot.js').parse; // eslint-disable-line flowtype/no-weak-types // todo whargarbl remove any -var version = '5.14.1'; // replaced from package.js in build +var version = '5.14.2'; // replaced from package.js in build /* eslint-disable complexity */ diff --git a/docs/lib/index.html b/docs/lib/index.html index 33793c49..05aedb3e 100644 --- a/docs/lib/index.html +++ b/docs/lib/index.html @@ -2,7 +2,7 @@ - jssm 5.14.1 | Documentation + jssm 5.14.2 | Documentation @@ -14,7 +14,7 @@

jssm

-
5.14.1
+
5.14.2
=6.0.0" }, @@ -30,14 +30,12 @@ "rename": "node -e \"require('fs').renameSync('./build/jssm.js', './build/jssm.es5.js');\"", "pack": "browserify -r ./build/jssm.es5.js:jssm -o build/jssm.es5.cjs.js", "make": "npm run clean && npm run peg && npm run babel && npm run rename && npm run setver && npm run pack", - "flow": "flow", "peg": "rm -f src/js/jssm-dot.js && pegjs src/js/jssm-dot.peg && cp src/js/jssm-dot.js build/", "eslint": "eslint src/js/jssm.js src/js/jssm-types.js src/js/tests/*.js", "nyc-html": "nyc report --reporter=html", "coverage": "nyc report --reporter=text-lcov | coveralls", - "vet": "npm run flow && npm run eslint && npm run audit", + "vet": "npm run eslint && npm run audit", "audit": "text_audit -t major wasteful any mixed fixme checkme testme stochable todo comeback whargarbl", - "qbuild": "npm run eslint && npm run make && npm run minify && npm run docs && npm run site && npm run dist", "build": "npm run make && npm run vet && 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",