@remix_labs/machine-starter 2.2170.0-dev → 2.2172.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 +1 -1
- package/groovebox_build.js +1 -1
- package/machine-wasm.worker.js +1 -1
- package/package.json +2 -2
package/common.js
CHANGED
|
@@ -74,7 +74,7 @@ async function StartWASM2(hub, config) {
|
|
|
74
74
|
// this is the only mixcore kind that has to be realized in the starter,
|
|
75
75
|
// because it cannot be sent to the worker
|
|
76
76
|
let mixcore = await mixcoreFromConfig(mixcoreConfig);
|
|
77
|
-
localFFIs = {...localFFIs, ...mixcore.localFFIs()};
|
|
77
|
+
localFFIs = {...localFFIs, ...await mixcore.localFFIs()};
|
|
78
78
|
mixcoreConfig = null; // this gets passed on to the worker
|
|
79
79
|
}
|
|
80
80
|
if (localFFIs) {
|
package/groovebox_build.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var GROOVEBOX_BUILD = "
|
|
1
|
+
var GROOVEBOX_BUILD = "2341";
|
|
2
2
|
export { GROOVEBOX_BUILD }
|