spessasynth_core 3.26.33 → 3.26.34

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 +9 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ // noinspection JSUnusedGlobalSymbols
2
+
1
3
  import { SpessaSynthProcessor } from "./src/synthetizer/audio_engine/main_processor.js";
2
4
  import { SpessaSynthSequencer } from "./src/sequencer/sequencer_engine.js";
3
5
  import {
@@ -25,6 +27,8 @@ import { BasicInstrument } from "./src/soundfont/basic_soundfont/basic_instrumen
25
27
  import { BasicPreset } from "./src/soundfont/basic_soundfont/basic_preset.js";
26
28
  import { Generator } from "./src/soundfont/basic_soundfont/generator.js";
27
29
  import { Modulator, modulatorCurveTypes, modulatorSources } from "./src/soundfont/basic_soundfont/modulator.js";
30
+ import { BasicZone } from "./src/soundfont/basic_soundfont/basic_zone.js";
31
+ import { BasicGlobalZone } from "./src/soundfont/basic_soundfont/basic_global_zone.js";
28
32
  import { loadSoundFont } from "./src/soundfont/load_soundfont.js";
29
33
 
30
34
  import { MIDI } from "./src/midi/midi_loader.js";
@@ -89,14 +93,16 @@ export {
89
93
 
90
94
  // sound banks
91
95
  loadSoundFont,
92
- BasicSoundBank,
96
+ Generator,
97
+ Modulator,
98
+ BasicZone,
99
+ BasicGlobalZone,
93
100
  BasicSample,
94
101
  BasicInstrumentZone,
95
102
  BasicInstrument,
96
103
  BasicPreset,
97
104
  BasicPresetZone,
98
- Generator,
99
- Modulator,
105
+ BasicSoundBank,
100
106
 
101
107
  modulatorSources,
102
108
  modulatorCurveTypes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spessasynth_core",
3
- "version": "3.26.33",
3
+ "version": "3.26.34",
4
4
  "description": "MIDI and SoundFont2/DLS library with no compromises",
5
5
  "main": "index.js",
6
6
  "type": "module",