@bytecodealliance/jco 1.7.0 → 1.7.2
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/lib/wasi_snapshot_preview1.command.wasm +0 -0
- package/lib/wasi_snapshot_preview1.reactor.wasm +0 -0
- package/obj/js-component-bindgen-component.core.wasm +0 -0
- package/obj/js-component-bindgen-component.core2.wasm +0 -0
- package/obj/js-component-bindgen-component.js +1162 -1162
- package/obj/wasm-tools.core.wasm +0 -0
- package/obj/wasm-tools.core2.wasm +0 -0
- package/obj/wasm-tools.js +1162 -1162
- package/package.json +6 -6
- package/src/jco.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bytecodealliance/jco",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "JavaScript tooling for working with WebAssembly Components",
|
|
5
5
|
"author": "Guy Bedford",
|
|
6
6
|
"bin": {
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"type": "module",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@bytecodealliance/componentize-js": "^0.
|
|
28
|
-
"@bytecodealliance/preview2-shim": "^0.17.
|
|
29
|
-
"binaryen": "^
|
|
27
|
+
"@bytecodealliance/componentize-js": "^0.14.0",
|
|
28
|
+
"@bytecodealliance/preview2-shim": "^0.17.1",
|
|
29
|
+
"binaryen": "^120.0.0",
|
|
30
30
|
"chalk-template": "^1",
|
|
31
31
|
"commander": "^12",
|
|
32
32
|
"mkdirp": "^3",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"build:release": "cargo xtask build release",
|
|
63
63
|
"build:types:preview2-shim": "cargo xtask generate wasi-types",
|
|
64
64
|
"lint": "eslint -c eslintrc.cjs src/**/*.js packages/*/lib/**/*.js",
|
|
65
|
-
"test:lts": "mocha -u tdd test/test.js --timeout
|
|
66
|
-
"test": "node --stack-trace-limit=100 node_modules/mocha/bin/mocha.js -u tdd test/test.js --timeout
|
|
65
|
+
"test:lts": "mocha -u tdd test/test.js --timeout 120000",
|
|
66
|
+
"test": "node --stack-trace-limit=100 node_modules/mocha/bin/mocha.js -u tdd test/test.js --timeout 120000",
|
|
67
67
|
"prepublishOnly": "cargo xtask build release && npm run test"
|
|
68
68
|
},
|
|
69
69
|
"files": [
|
package/src/jco.js
CHANGED
|
@@ -11,7 +11,7 @@ program
|
|
|
11
11
|
.name('jco')
|
|
12
12
|
.description(c`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`)
|
|
13
13
|
.usage('<command> [options]')
|
|
14
|
-
.version('1.7.
|
|
14
|
+
.version('1.7.2');
|
|
15
15
|
|
|
16
16
|
function myParseInt(value) {
|
|
17
17
|
return parseInt(value, 10);
|