@remix_labs/machine-starter 2.2735.0-dev → 2.2739.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 CHANGED
@@ -82,10 +82,6 @@ async function StartWASM2(hub, config) {
82
82
  console.log("Mixcore (starter)", mixcore, ffiNames, mixcore.registerDebugObject);
83
83
  localFFIs = {...localFFIs, ...mixcoreLocalFFIs(mixcore, ffiNames)};
84
84
  config.mixcore = {};
85
- if (mixcore.registerDebugObject) {
86
- config.mixcore.publishDebugObjects = true;
87
- subscribeDebugObjects(mixcore, hub, config);
88
- }
89
85
  }
90
86
  let localFFIkind = {};
91
87
  let localFFIfuns = {};
@@ -308,19 +304,6 @@ async function setupLocalFFIs(hub, config, localFFIs) {
308
304
  }
309
305
  }
310
306
 
311
- async function subscribeDebugObjects(mixcore, hub, config) {
312
- let channel = await hub.newChannel();
313
- let vmID = config.vmID;
314
- await channel.setLocalSubTopic(`/debug-objects/${vmID}`);
315
- let sub = await channel.subscribe(`/debug-objects/${vmID}`);
316
- while (true) {
317
- let msg = await sub.next();
318
- let id = msg.payload.id;
319
- let code = msg.payload.code;
320
- mixcore.registerDebugObject(id, code);
321
- }
322
- }
323
-
324
307
  class FFIComm {
325
308
  constructor(vmID, hub, channel) {
326
309
  this.vmID = vmID;
@@ -1,2 +1,2 @@
1
- var GROOVEBOX_BUILD = "2979";
1
+ var GROOVEBOX_BUILD = "2984";
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.2735.0-dev",
3
+ "version": "2.2739.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.2735.0-dev",
14
+ "@remix_labs/hub-client": "2.2739.0-dev",
15
15
  "nanoid": "^5.0.2",
16
16
  "web-worker": "^1.2.0"
17
17
  },