Skip to content

Commit

Permalink
istanbul -> nyc
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Apr 18, 2019
1 parent 30ab3f9 commit 71f5f28
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ os:
- osx
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" || "$TRAVIS_NODE_VERSION" == "8" || "$TRAVIS_NODE_VERSION" == "9" ]]; then npm remove midi-test --save-dev; fi
after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage

after_success: npm run coverage
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ by running `npm remove midi-test --save-dev`.
##### CDN

<script src="https://cdn.jsdelivr.net/npm/jzz"></script> // the latest version, or
<script src="https://cdn.jsdelivr.net/npm/jzz@0.7.3"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@0.7.4"></script> // any particular version
//...

##### CommonJS (Browserify and Node.js command line applications)
Expand Down
2 changes: 1 addition & 1 deletion javascript/JZZ.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
})(this, function() {

var _scope = typeof window === 'undefined' ? global : window;
var _version = '0.7.3';
var _version = '0.7.4';
var i, j, k, m, n;

var _time = Date.now || function () { return new Date().getTime(); };
Expand Down
2 changes: 1 addition & 1 deletion minified/JZZ.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "jzz",
"version": "0.7.3",
"version": "0.7.4",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
"test": "mocha"
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"MIDI",
Expand All @@ -23,9 +24,9 @@
"grunt": "^1.0.4",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"istanbul": "^0.4.5",
"midi-test": "^1.0.0",
"mocha": "^6.0.2"
"midi-test": "^1.0.2",
"mocha": "^6.1.3",
"nyc": "^14.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 71f5f28

Please sign in to comment.