Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Jul 4, 2022
1 parent 5bb70e3 commit 52f6143
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
- run: npm install
- run: npm test
- run: npm run coverage
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ by running `npm remove midi-test --save-dev`.

```html
<script src="https://cdn.jsdelivr.net/npm/jzz"></script> // the latest version, or
<script src="https://cdn.jsdelivr.net/npm/jzz@1.5.1"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@1.5.2"></script> // any particular version
//...
```

##### CDN (unpkg)

```html
<script src="https://unpkg.com/jzz"></script> // the latest version, or
<script src="https://unpkg.com/jzz@1.5.1"></script> // any particular version
<script src="https://unpkg.com/jzz@1.5.2"></script> // any particular version
//...
```

Expand Down
2 changes: 1 addition & 1 deletion javascript/JZZ.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
})(this, function() {

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

/* istanbul ignore next */
Expand Down
2 changes: 1 addition & 1 deletion minified/JZZ.js

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jzz",
"version": "1.5.1",
"version": "1.5.2",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
Expand All @@ -18,16 +18,17 @@
"author": "jazz-soft (https://jazz-soft.net/)",
"dependencies": {
"@types/webmidi": "^2.0.6",
"jazz-midi": "^1.7.5"
"jazz-midi": "^1.7.6"
},
"devDependencies": {
"eslint": "^8.14.0",
"grunt": "^1.5.2",
"eslint": "^8.19.0",
"grunt": "^1.5.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.1",
"grunt-contrib-uglify": "^5.2.2",
"midi-test": "^1.2.1",
"mocha": "^9.2.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"web-audio-test": "^0.0.3",
"web-midi-test": "^1.2.1"
},
"runkitExampleFilename": "runkit.js",
Expand Down
4 changes: 2 additions & 2 deletions web-midi-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-midi-api",
"version": "2.1.5",
"version": "2.1.6",
"description": "Web MIDI API for Node.js",
"main": "index.js",
"scripts": {
Expand All @@ -13,7 +13,7 @@
"web-midi-api"
],
"dependencies": {
"jzz": "^1.5.1"
"jzz": "^1.5.2"
},
"contributors": [
{
Expand Down

0 comments on commit 52f6143

Please sign in to comment.