@remix_labs/machine-starter 2.2822.0-dev → 2.2826.0-dev
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/common.js +3 -1
- package/groovebox_build.js +1 -1
- package/package.json +2 -2
package/common.js
CHANGED
|
@@ -351,14 +351,16 @@ async function getMixcoreFFIs(config) {
|
|
|
351
351
|
switch (config?.kind) {
|
|
352
352
|
case 'mixcore':
|
|
353
353
|
mixcore = config.mixcore;
|
|
354
|
+
break;
|
|
354
355
|
case 'tauri':
|
|
355
356
|
mixcore = await MixcoreTauri.create(config.workspace, config.app);
|
|
357
|
+
break;
|
|
356
358
|
default:
|
|
357
359
|
return;
|
|
358
360
|
}
|
|
359
361
|
|
|
360
362
|
let names = await mixcore.ffiNames();
|
|
361
|
-
names = filterFFINames(names, enableFFIs, disableFFIs);
|
|
363
|
+
names = filterFFINames(names, config.enableFFIs, config.disableFFIs);
|
|
362
364
|
|
|
363
365
|
let localFFIs = {};
|
|
364
366
|
for (let name of names) {
|
package/groovebox_build.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var GROOVEBOX_BUILD = "
|
|
1
|
+
var GROOVEBOX_BUILD = "3105";
|
|
2
2
|
export { GROOVEBOX_BUILD }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remix_labs/machine-starter",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2826.0-dev",
|
|
4
4
|
"description": "start the groove",
|
|
5
5
|
"main": "node.js",
|
|
6
6
|
"browser": "index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"author": "Remixlabs staff",
|
|
12
12
|
"license": "ISC",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@remix_labs/hub-client": "2.
|
|
14
|
+
"@remix_labs/hub-client": "2.2826.0-dev",
|
|
15
15
|
"nanoid": "^5.0.2",
|
|
16
16
|
"web-worker": "^1.2.0"
|
|
17
17
|
},
|