@remix_labs/machine-starter 1.1880.0-dev → 1.1884.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.
@@ -1,2 +1,2 @@
1
- var GROOVEBOX_BUILD = "1880";
1
+ var GROOVEBOX_BUILD = "1884";
2
2
  export { GROOVEBOX_BUILD }
package/node.js CHANGED
@@ -1,5 +1,3 @@
1
- //import Worker from "web-worker";
2
- //global.Worker = Worker;
3
1
  import { MessageChannel, Worker } from "worker_threads";
4
2
  global.MessageChannel = MessageChannel;
5
3
  import Process from "process";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remix_labs/machine-starter",
3
- "version": "1.1880.0-dev",
3
+ "version": "1.1884.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": "1.1880.0-dev",
14
+ "@remix_labs/hub-client": "1.1884.0-dev",
15
15
  "nanoid": "^3.1.12",
16
16
  "web-worker": "^1.2.0"
17
17
  },
package/start.mjs CHANGED
@@ -1,13 +1,5 @@
1
- //import { fileURLToPath } from 'url';
2
- //const __filename = fileURLToPath(import.meta.url);
3
-
4
1
  import Process from "process";
5
- import * as Starter from "./node.mjs";
6
- //import { StartWASM2 } from "../dist/node.js";
7
- //import * as Hub from "@remix_labs/hub-client";
8
-
9
- StartWASM2 = Starter.StartWASM2;
10
- Hub = Starter.Hub;
2
+ import { StartWASM2, Hub } from "./node.js";
11
3
 
12
4
  if (Process.stdout._handle)
13
5
  Process.stdout._handle.setBlocking(true);
package/webpack.config.js CHANGED
@@ -9,7 +9,7 @@ export default [
9
9
  target: 'node',
10
10
  mode: "production",
11
11
  entry: {
12
- node: './node.js',
12
+ node: './start.mjs',
13
13
  //'hub-worker': './hub-worker.js',
14
14
  //'machine-wasm': './machine-wasm.js',
15
15
  },
@@ -29,7 +29,7 @@ export default [
29
29
  },
30
30
  output: {
31
31
  chunkFormat: 'module',
32
- filename: '[name].mjs',
32
+ filename: 'machine-starter.mjs',
33
33
  library : {
34
34
  type: 'module',
35
35
  },