Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 6a32479

Browse files
committed
Update easymidi to 2.0.1 for channel typing fix
1 parent 2b9e244 commit 6a32479

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

nodecg-io-midi-input/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
},
3030
"dependencies": {
3131
"nodecg-io-core": "0.1.0",
32-
"easymidi": "^2.0.0"
32+
"easymidi": "^2.0.1"
3333
}
3434
}

nodecg-io-midi-output/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
},
3030
"dependencies": {
3131
"nodecg-io-core": "0.1.0",
32-
"easymidi": "^2.0.0"
32+
"easymidi": "^2.0.1"
3333
}
3434
}

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/midi-output/extension/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = function (nodecg: NodeCG) {
1414
setInterval(() => {
1515
const noteVal: number = Math.round(Math.random() * 127);
1616
const velocityVal: number = Math.round(Math.random() * 127);
17-
const channelVal: Channel = <Channel>Math.round(Math.random() * 1);
17+
const channelVal = <Channel>Math.round(Math.random() * 1);
1818

1919
const data: Note = {
2020
note: noteVal,

0 commit comments

Comments
 (0)