@remix_labs/machine-starter 2.12072.0-dev → 2.12076.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 +2 -1
- package/groovebox_build.js +1 -1
- package/package.json +2 -2
package/common.js
CHANGED
|
@@ -135,7 +135,7 @@ async function StartWASM2(hub, config, getWorker) {
|
|
|
135
135
|
last_hub = hub;
|
|
136
136
|
let channel = await hub.newChannel();
|
|
137
137
|
// injected by either index.js or node.js
|
|
138
|
-
let worker =
|
|
138
|
+
let worker = getWorker();
|
|
139
139
|
if (workers[config.vmID] || ffiLoops[config.vmID])
|
|
140
140
|
throw new Error("Cannot start VM, the ID is used: " + config.vmID);
|
|
141
141
|
workers[config.vmID] = worker;
|
|
@@ -188,6 +188,7 @@ async function StartWASM2(hub, config, getWorker) {
|
|
|
188
188
|
"baseURL": config.baseURL,
|
|
189
189
|
"org": config.org,
|
|
190
190
|
"workspace": config.workspace,
|
|
191
|
+
"topicPrefix": config.topicPrefix,
|
|
191
192
|
"vmID": config.vmID,
|
|
192
193
|
"user": config.user,
|
|
193
194
|
"token": config.token,
|
package/groovebox_build.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var GROOVEBOX_BUILD = "
|
|
1
|
+
var GROOVEBOX_BUILD = "12076";
|
|
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.12076.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.12076.0-dev",
|
|
15
15
|
"nanoid": "^5.0.2",
|
|
16
16
|
"web-worker": "^1.2.0"
|
|
17
17
|
},
|