@coderline/alphatab 1.7.0-alpha.1527 → 1.7.0-alpha.1529
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.
- package/dist/alphaTab.core.min.mjs +2 -2
- package/dist/alphaTab.core.mjs +4 -4
- package/dist/alphaTab.js +4 -4
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +1 -1
- package/dist/alphaTab.mjs +1 -1
- package/dist/alphaTab.vite.js +1 -1
- package/dist/alphaTab.vite.mjs +1 -1
- package/dist/alphaTab.webpack.js +13 -3
- package/dist/alphaTab.webpack.mjs +13 -3
- package/dist/alphaTab.worker.min.mjs +1 -1
- package/dist/alphaTab.worker.mjs +1 -1
- package/dist/alphaTab.worklet.min.mjs +1 -1
- package/dist/alphaTab.worklet.mjs +1 -1
- package/package.json +1 -1
package/dist/alphaTab.min.mjs
CHANGED
package/dist/alphaTab.mjs
CHANGED
package/dist/alphaTab.vite.js
CHANGED
package/dist/alphaTab.vite.mjs
CHANGED
package/dist/alphaTab.webpack.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab v1.7.0-alpha.
|
|
2
|
+
* alphaTab v1.7.0-alpha.1529 (develop, build 1529)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -228,7 +228,12 @@ function configureAudioWorklet(webPackWithAlphaTab, pluginName, options, compile
|
|
|
228
228
|
entryOptions: {
|
|
229
229
|
chunkLoading: false,
|
|
230
230
|
wasmLoading: false,
|
|
231
|
-
runtime: runtime
|
|
231
|
+
runtime: runtime,
|
|
232
|
+
library: {
|
|
233
|
+
// prevent any built-in/default library settings
|
|
234
|
+
// to be active for this chunk
|
|
235
|
+
type: 'at-worklet'
|
|
236
|
+
}
|
|
232
237
|
}
|
|
233
238
|
});
|
|
234
239
|
block.loc = expr.loc;
|
|
@@ -298,7 +303,12 @@ function configureWebWorker(webPackWithAlphaTab, pluginName, options, compiler,
|
|
|
298
303
|
entryOptions: {
|
|
299
304
|
chunkLoading: 'import-scripts',
|
|
300
305
|
wasmLoading: false,
|
|
301
|
-
runtime: runtime
|
|
306
|
+
runtime: runtime,
|
|
307
|
+
library: {
|
|
308
|
+
// prevent any built-in/default library settings
|
|
309
|
+
// to be active for this chunk
|
|
310
|
+
type: 'at-worker'
|
|
311
|
+
}
|
|
302
312
|
}
|
|
303
313
|
});
|
|
304
314
|
block.loc = expr.loc;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* alphaTab v1.7.0-alpha.
|
|
2
|
+
* alphaTab v1.7.0-alpha.1529 (develop, build 1529)
|
|
3
3
|
*
|
|
4
4
|
* Copyright © 2025, Daniel Kuschny and Contributors, All rights reserved.
|
|
5
5
|
*
|
|
@@ -203,7 +203,12 @@ function configureAudioWorklet(webPackWithAlphaTab, pluginName, options, compile
|
|
|
203
203
|
entryOptions: {
|
|
204
204
|
chunkLoading: false,
|
|
205
205
|
wasmLoading: false,
|
|
206
|
-
runtime: runtime
|
|
206
|
+
runtime: runtime,
|
|
207
|
+
library: {
|
|
208
|
+
// prevent any built-in/default library settings
|
|
209
|
+
// to be active for this chunk
|
|
210
|
+
type: 'at-worklet'
|
|
211
|
+
}
|
|
207
212
|
}
|
|
208
213
|
});
|
|
209
214
|
block.loc = expr.loc;
|
|
@@ -273,7 +278,12 @@ function configureWebWorker(webPackWithAlphaTab, pluginName, options, compiler,
|
|
|
273
278
|
entryOptions: {
|
|
274
279
|
chunkLoading: 'import-scripts',
|
|
275
280
|
wasmLoading: false,
|
|
276
|
-
runtime: runtime
|
|
281
|
+
runtime: runtime,
|
|
282
|
+
library: {
|
|
283
|
+
// prevent any built-in/default library settings
|
|
284
|
+
// to be active for this chunk
|
|
285
|
+
type: 'at-worker'
|
|
286
|
+
}
|
|
277
287
|
}
|
|
278
288
|
});
|
|
279
289
|
block.loc = expr.loc;
|
package/dist/alphaTab.worker.mjs
CHANGED