spessasynth_lib 3.26.1 → 3.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -56
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,31 +1,5 @@
1
1
  // Import modules
2
- import {
3
- ALL_CHANNELS_OR_DIFFERENT_ACTION,
4
- BasicInstrument,
5
- BasicInstrumentZone,
6
- BasicMIDI,
7
- BasicPreset,
8
- BasicPresetZone,
9
- BasicSample,
10
- BasicSoundBank,
11
- ChannelSnapshot,
12
- DEFAULT_PERCUSSION,
13
- Generator,
14
- IndexedByteArray,
15
- loadSoundFont,
16
- messageTypes,
17
- MIDI,
18
- MIDIBuilder,
19
- midiControllers,
20
- MIDIMessage,
21
- Modulator,
22
- modulatorSources,
23
- NON_CC_INDEX_OFFSET,
24
- RMIDINFOChunks,
25
- SpessaSynthLogging,
26
- SynthesizerSnapshot,
27
- VOICE_CAP
28
- } from "spessasynth_core";
2
+
29
3
  import { Synthetizer } from "./synthetizer/synthetizer.js";
30
4
  import { Sequencer } from "./sequencer/sequencer.js";
31
5
  import { audioBufferToWav } from "./utils/buffer_to_wav.js";
@@ -39,39 +13,10 @@ export {
39
13
  // Synthesizer and Sequencer
40
14
  Sequencer,
41
15
  Synthetizer,
42
- SynthesizerSnapshot,
43
- ChannelSnapshot,
44
- DEFAULT_PERCUSSION,
45
- VOICE_CAP,
46
16
  DEFAULT_SYNTH_CONFIG,
47
- ALL_CHANNELS_OR_DIFFERENT_ACTION,
48
- NON_CC_INDEX_OFFSET,
49
-
50
- // SoundFont
51
- BasicSoundBank,
52
- BasicSample,
53
- BasicInstrumentZone,
54
- BasicInstrument,
55
- BasicPreset,
56
- BasicPresetZone,
57
- Generator,
58
- Modulator,
59
- loadSoundFont,
60
- modulatorSources,
61
-
62
- // MIDI
63
- MIDI,
64
- BasicMIDI,
65
- MIDIBuilder,
66
- MIDIMessage,
67
- RMIDINFOChunks,
68
17
 
69
18
  // Utilities
70
- IndexedByteArray,
71
19
  audioBufferToWav,
72
- SpessaSynthLogging,
73
- midiControllers,
74
- messageTypes,
75
20
  MIDIDeviceHandler,
76
21
  WebMIDILinkHandler,
77
22
  WORKLET_URL_ABSOLUTE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spessasynth_lib",
3
- "version": "3.26.1",
3
+ "version": "3.26.2",
4
4
  "description": "MIDI and SoundFont2/DLS library for the browsers with no compromises",
5
5
  "browser": "index.js",
6
6
  "type": "module",