Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Jun 26, 2019
1 parent 28f0972 commit 29593b9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Expand Up @@ -26,7 +26,8 @@ module.exports = {
},
"rules": {
"no-console" : "off",
"no-empty" : ["warn", { "allowEmptyCatch": true }]
"no-empty" : ["warn", { "allowEmptyCatch": true }],
"no-prototype-builtins" : "off"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.8.2"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@0.8.3"></script> // any particular version
//...

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

var _scope = typeof window === 'undefined' ? global : window;
var _version = '0.8.2';
var _version = '0.8.3';
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.

6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "jzz",
"version": "0.8.2",
"version": "0.8.3",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
Expand All @@ -21,14 +21,14 @@
},
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint": "^6.0.1",
"grunt": "^1.0.4",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"midi-test": "^1.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"web-midi-test": "^0.0.6"
"web-midi-test": "^0.0.7"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 29593b9

Please sign in to comment.