Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed May 18, 2021
1 parent fc21a8a commit 124d48f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -68,15 +68,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.3.1"></script> // any particular version
<script src="https://cdn.jsdelivr.net/npm/jzz@1.3.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.3.1"></script> // any particular version
<script src="https://unpkg.com/jzz@1.3.2"></script> // any particular version
//...
```

Expand Down Expand Up @@ -211,6 +211,12 @@ JZZ.MIDI.midi(450); // => 69.38905773230853
- [**JZZ-gui-Karaoke**](https://github.com/jazz-soft/JZZ-gui-Karaoke) - Karaoke :)
- [**etc...**](https://github.com/jazz-soft/JZZ-modules) - Import third-party solutions into the JZZ framework

## Testing your MIDI applications
- [**midi-test**](https://github.com/jazz-soft/midi-test) - Virtual MIDI ports for testing MIDI applications
- [**web-midi-test**](https://github.com/jazz-soft/web-midi-test) - Fake Web MIDI API for testing Web MIDI applications
- [**jazz-midi-headless**](https://github.com/jazz-soft/jazz-midi-headless) - MIDI for headless testing
- [**test-midi-files**](https://github.com/jazz-soft/jazz-midi-headless) - A framework for producing test MIDI files

*Check the [**Getting Started**](https://jazz-soft.net/doc/JZZ) page
and the [**API reference**](https://jazz-soft.net/doc/JZZ/reference.html)
for more information.
2 changes: 1 addition & 1 deletion javascript/JZZ.js
Expand Up @@ -14,7 +14,7 @@
})(this, function() {

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

12 changes: 6 additions & 6 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "jzz",
"version": "1.3.1",
"version": "1.3.2",
"description": "MIDI library for Node.js and web-browsers",
"main": "javascript/JZZ.js",
"scripts": {
Expand All @@ -18,17 +18,17 @@
"author": "jazz-soft (https://jazz-soft.net/)",
"dependencies": {
"@types/webmidi": "^2.0.4",
"jazz-midi": "^1.7.4"
"jazz-midi": "^1.7.5"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint": "^7.26.0",
"grunt": "^1.4.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-uglify": "^5.0.1",
"midi-test": "^1.1.5",
"mocha": "^8.3.2",
"midi-test": "^1.1.6",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"web-midi-test": "^1.1.5"
"web-midi-test": "^1.1.6"
},
"runkitExampleFilename": "runkit.js",
"repository": {
Expand Down

0 comments on commit 124d48f

Please sign in to comment.