@remix_labs/machine-starter 2.1875.0-dev → 2.1877.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 -8
- package/groovebox_build.js +1 -1
- package/machine-wasm.worker.js +1 -1
- package/package.json +2 -2
package/common.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { nanoid } from "nanoid";
|
|
2
1
|
import { GROOVEBOX_BUILD } from "./groovebox_build.js";
|
|
3
2
|
|
|
4
3
|
let terminate = function(f) {};
|
|
@@ -11,10 +10,6 @@ if (globalThis.ThisIsNode) {
|
|
|
11
10
|
}
|
|
12
11
|
};
|
|
13
12
|
|
|
14
|
-
function CreateVMID() {
|
|
15
|
-
return nanoid()
|
|
16
|
-
}
|
|
17
|
-
|
|
18
13
|
let initialMask = 64 + 1024; // default for web
|
|
19
14
|
globalThis.MixSetMask = (m => {
|
|
20
15
|
initialMask = m;
|
|
@@ -287,6 +282,4 @@ class FFIComm {
|
|
|
287
282
|
|
|
288
283
|
// use worker.terminate() to shut a worker down!
|
|
289
284
|
|
|
290
|
-
export {
|
|
291
|
-
Token, Case, Opaque
|
|
292
|
-
}
|
|
285
|
+
export { StartWASM, StartWASM2, Token, Case, Opaque }
|
package/groovebox_build.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var GROOVEBOX_BUILD = "
|
|
1
|
+
var GROOVEBOX_BUILD = "1976";
|
|
2
2
|
export { GROOVEBOX_BUILD }
|