@remix_labs/machine-starter 2.2198.0-dev → 2.2200.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/groovebox_build.js +1 -1
- package/machine-wasm.worker.js +1 -1
- package/package.json +2 -2
- package/start.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remix_labs/machine-starter",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2200.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.2200.0-dev",
|
|
15
15
|
"nanoid": "^5.0.2",
|
|
16
16
|
"web-worker": "^1.2.0"
|
|
17
17
|
},
|
package/start.js
CHANGED
|
@@ -44,7 +44,7 @@ let with_mixc = !!(Process.env["MIXC_ENABLE"]);
|
|
|
44
44
|
console.log("Machine params: variant=" + variant + " baseURL=" + baseURL, " mqttURL=" + mqttURL, " mqttUser=" + mqttUser, " mqttToken=" + mqttToken, " id=" + id, " noOutputViaMQTT=" + noOutputViaMQTT, " withMixc=" + with_mixc);
|
|
45
45
|
let protoquery = Process.env["PROTOQUERY_ROOT"] || "";
|
|
46
46
|
let wasm_base = Process.env["MIX_WASM_BASE"] || "file://" + protoquery + "/wasm-build/artifacts/lib/wasm32-unknown-unknown";
|
|
47
|
-
let mixcoreWasmApi = new MixcoreWasmApi.create(mixcoreWasm, new
|
|
47
|
+
let mixcoreWasmApi = new MixcoreWasmApi.create(mixcoreWasm, new MiniWASI());
|
|
48
48
|
let mixcore = MixcoreWasm.create(null, null, null, mixcoreWasm, mixcoreWasmApi);
|
|
49
49
|
let mixcoreConfig = { kind: "mixcore", mixcore, enableFFIs: ["$decodeError"] };
|
|
50
50
|
let w = new Hub.Worker();
|