@bytecodealliance/jco 1.24.2 → 1.24.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytecodealliance/jco",
3
- "version": "1.24.2",
3
+ "version": "1.24.4",
4
4
  "description": "JavaScript tooling for working with WebAssembly Components",
5
5
  "keywords": [
6
6
  "Component",
@@ -58,7 +58,7 @@
58
58
  "dependencies": {
59
59
  "@bytecodealliance/componentize-js": "^0.21.0",
60
60
  "@bytecodealliance/componentize-js-0-19-3": "npm:@bytecodealliance/componentize-js@^0.19.3",
61
- "@bytecodealliance/jco-transpile": "^0.3.3",
61
+ "@bytecodealliance/jco-transpile": "^0.3.6",
62
62
  "@bytecodealliance/preview2-shim": "^0.17.9",
63
63
  "@bytecodealliance/preview3-shim": "^0.1.2",
64
64
  "binaryen": "^130.0.0",
package/src/cmd/types.js CHANGED
@@ -145,7 +145,7 @@ export async function typesComponent(witPath, opts) {
145
145
  name,
146
146
  instantiation,
147
147
  tlaCompat: opts.tlaCompat ?? false,
148
- world: opts.worldName,
148
+ worldName: opts.worldName,
149
149
  features,
150
150
  guest,
151
151
  strict: opts.strict === true,
package/src/jco.js CHANGED
@@ -25,7 +25,7 @@ program
25
25
  )
26
26
  .usage("<command> [options]")
27
27
  .enablePositionalOptions()
28
- .version("1.24.2");
28
+ .version("1.24.4");
29
29
 
30
30
  function myParseInt(value) {
31
31
  return parseInt(value, 10);