@thi.ng/wasm-api-bindgen 1.2.44 → 1.2.46
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/CHANGELOG.md +7 -1
- package/cli.js +5 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-09-
|
|
3
|
+
- **Last updated**: 2025-09-26T13:50:05Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
11
11
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
12
|
and/or version bumps of transitive dependencies.
|
|
13
13
|
|
|
14
|
+
### [1.2.45](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-bindgen@1.2.45) (2025-09-26)
|
|
15
|
+
|
|
16
|
+
#### ♻️ Refactoring
|
|
17
|
+
|
|
18
|
+
- update CLI arg specs ([7c43dac](https://github.com/thi-ng/umbrella/commit/7c43dac))
|
|
19
|
+
|
|
14
20
|
### [1.2.42](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-bindgen@1.2.42) (2025-09-25)
|
|
15
21
|
|
|
16
22
|
#### ♻️ Refactoring
|
package/cli.js
CHANGED
|
@@ -177,17 +177,19 @@ cliApp({
|
|
|
177
177
|
default: false,
|
|
178
178
|
desc: "enable debug output & functions"
|
|
179
179
|
}),
|
|
180
|
-
lang: oneOfMulti(
|
|
180
|
+
lang: oneOfMulti({
|
|
181
181
|
alias: "l",
|
|
182
182
|
desc: "target language",
|
|
183
|
+
opts: Object.keys(GENERATORS),
|
|
183
184
|
default: ["ts", "zig"],
|
|
184
185
|
delim: ","
|
|
185
186
|
}),
|
|
186
187
|
out: strings({ alias: "o", hint: "FILE", desc: "output file path" }),
|
|
187
|
-
string: oneOf(
|
|
188
|
+
string: oneOf({
|
|
188
189
|
alias: "s",
|
|
189
190
|
hint: "TYPE",
|
|
190
|
-
desc: "Force string type implementation"
|
|
191
|
+
desc: "Force string type implementation",
|
|
192
|
+
opts: ["slice", "ptr"]
|
|
191
193
|
})
|
|
192
194
|
},
|
|
193
195
|
commands: { CMD },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/wasm-api-bindgen",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.46",
|
|
4
4
|
"description": "Polyglot bindings code generators (TS/JS, Zig, C11) for hybrid WebAssembly projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@thi.ng/api": "^8.12.2",
|
|
45
|
-
"@thi.ng/args": "^3.
|
|
45
|
+
"@thi.ng/args": "^3.1.1",
|
|
46
46
|
"@thi.ng/arrays": "^2.13.11",
|
|
47
47
|
"@thi.ng/binary": "^3.4.60",
|
|
48
48
|
"@thi.ng/checks": "^3.7.18",
|
|
49
49
|
"@thi.ng/compare": "^2.4.28",
|
|
50
|
-
"@thi.ng/defmulti": "^3.0.
|
|
50
|
+
"@thi.ng/defmulti": "^3.0.78",
|
|
51
51
|
"@thi.ng/errors": "^2.5.42",
|
|
52
|
-
"@thi.ng/file-io": "^2.2.
|
|
53
|
-
"@thi.ng/logger": "^3.2.
|
|
52
|
+
"@thi.ng/file-io": "^2.2.11",
|
|
53
|
+
"@thi.ng/logger": "^3.2.1",
|
|
54
54
|
"@thi.ng/paths": "^5.2.21",
|
|
55
55
|
"@thi.ng/strings": "^3.9.22",
|
|
56
|
-
"@thi.ng/wasm-api": "^2.4.
|
|
56
|
+
"@thi.ng/wasm-api": "^2.4.3"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^24.3.0",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"tag": "wasm",
|
|
129
129
|
"year": 2022
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "fbf4b46ba8a5ecff8c5423f4c2d158d208d20fc8\n"
|
|
132
132
|
}
|