Skip to content

Commit

Permalink
reduce testing redundancy in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed Aug 20, 2017
1 parent 2da94f7 commit dc02895
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,3 +1,4 @@
* [[`2da94f73fd`](https://github.com/StoneCypher/jssm/commit/2da94f73fd)] - tweak to fix flow (John Haugeland)
* [[`0c6083f06a`](https://github.com/StoneCypher/jssm/commit/0c6083f06a)] - obsoleted build step removing generated source was firing early, borking flow (John Haugeland)
* [[`096e1b2821`](https://github.com/StoneCypher/jssm/commit/096e1b2821)] - semver rules require a major because i changed the linking in package.json, lol. fixes #291 fixes #290 (John Haugeland)
* [[`5f69be243b`](https://github.com/StoneCypher/jssm/commit/5f69be243b)] - lel bad build script (John Haugeland)
Expand Down
2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/lib/index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset='utf-8' />
<title>jssm 5.0.1 | Documentation</title>
<title>jssm 5.0.2 | Documentation</title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
<link href='assets/style.css' type='text/css' rel='stylesheet' />
Expand All @@ -14,7 +14,7 @@
<div class='fixed xs-hide fix-3 overflow-auto max-height-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>jssm</h3>
<div class='mb1'><code>5.0.1</code></div>
<div class='mb1'><code>5.0.2</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "jssm",
"version": "5.0.1",
"version": "5.0.2",
"engines": {
"node": ">=6.0.0"
},
Expand All @@ -20,7 +20,7 @@
"postinstall": "npm run qbuild",
"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 ava report --reporter=html",
"nyc-html": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"vet": "npm run flow && npm run eslint",
"audit": "echo \\\"major\\\" remaining. . : `grep major src/js/jssm*.js | wc -l`\\\\n\\\"wasteful\\\" remaining : `grep wasteful src/js/jssm*.js | wc -l`\\\\n\\\"any\\\" remaining. . . : `grep any src/js/jssm*.js | wc -l`\\\\n\\\"mixed\\\" remaining. . : `grep mixed src/js/jssm*.js | wc -l`\\\\n\\\"todo\\\" remaining . . : `grep todo src/js/jssm*.js | wc -l`\\\\n\\\"nextdo\\\" remaining . : `grep nextdo src/js/jssm*.js | wc -l`\\\\n\\\"whargarbl\\\" remaining: `grep whargarbl src/js/jssm*.js | wc -l`\\\\n\\\"comeback\\\" remaining : `grep comeback src/js/jssm*.js | wc -l`\\\\n\\\"fixme\\\" remaining. . : `grep fixme src/js/jssm*.js | wc -l`\\\\n\\\"stochable\\\" remaining: `grep stochable src/js/jssm*.js | wc -l`\\\\n\\\"checkme\\\" remaining. : `grep checkme src/js/jssm*.js | wc -l`",
Expand All @@ -31,7 +31,7 @@
"site": "cp src/site/* docs/",
"docs": "documentation build src/js/** -f html -o docs/lib && npm run changelog",
"changelog": "rm -f CHANGELOG.md && changelog-maker -a > CHANGELOG.md",
"travis": "npm run vet && npm run test && npm run coverage"
"travis": "npm run vet && npm run nyc-html && npm run coverage"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit dc02895

Please sign in to comment.