Skip to content

Commit

Permalink
fix: missing js files in package
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jul 14, 2024
1 parent 06ed47a commit 412d124
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions midi.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ const { EventEmitter } = require('events');
// Bring in the set of constants to reflect MIDI messages and their
// parameters, to eliminate the need for magic numbers.
/** An instrument list, only valid in the General MIDI standard */
const Instruments = require('./instruments');
const Instruments = require('./lib/instruments');
/** A drum map, only valid in the General MIDI standard */
const Drums = require('./drums');
const Drums = require('./lib/drums');
/** Note descriptions, with Middle C = C5 = MIDI note 60 */
const Notes = require('./notes');
const Notes = require('./lib/notes');
/** Message names, including CCs */
const Messages = require('./messages');
const Messages = require('./lib/messages');

class Input extends EventEmitter {
constructor() {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"binding.gyp",
"binding-options.js",
"src/",
"lib/",
"vendor/rtmidi/RtMidi.cpp",
"vendor/rtmidi/RtMidi.h",
"prebuilds/"
Expand Down

0 comments on commit 412d124

Please sign in to comment.