@thi.ng/wasm-api 1.4.7 → 1.4.9
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 +1 -1
- package/bridge.js +1 -2
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/bridge.js
CHANGED
|
@@ -24,7 +24,7 @@ export const OutOfMemoryError = defError(() => "Out of memory");
|
|
|
24
24
|
* 64bit integers are handled via JS `BigInt` and hence require the host env to
|
|
25
25
|
* support it. No polyfills are provided.
|
|
26
26
|
*/
|
|
27
|
-
let WasmBridge = class WasmBridge {
|
|
27
|
+
export let WasmBridge = class WasmBridge {
|
|
28
28
|
constructor(modules = [], logger = new ConsoleLogger("wasm")) {
|
|
29
29
|
this.logger = logger;
|
|
30
30
|
this.id = "wasmapi";
|
|
@@ -399,4 +399,3 @@ let WasmBridge = class WasmBridge {
|
|
|
399
399
|
WasmBridge = __decorate([
|
|
400
400
|
INotifyMixin
|
|
401
401
|
], WasmBridge);
|
|
402
|
-
export { WasmBridge };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/wasm-api",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"test:build-zig": "zig build-lib -O ReleaseSmall -target wasm32-freestanding -dynamic --strip --pkg-begin wasmapi zig/lib.zig --pkg-end test/custom.zig && wasm-dis -o custom.wast custom.wasm && cp custom.wasm test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/api": "^8.8.
|
|
39
|
-
"@thi.ng/arrays": "^2.5.
|
|
40
|
-
"@thi.ng/checks": "^3.3.
|
|
41
|
-
"@thi.ng/errors": "^2.2.
|
|
42
|
-
"@thi.ng/hex": "^2.3.
|
|
43
|
-
"@thi.ng/idgen": "^2.1.
|
|
44
|
-
"@thi.ng/logger": "^1.4.
|
|
38
|
+
"@thi.ng/api": "^8.8.2",
|
|
39
|
+
"@thi.ng/arrays": "^2.5.13",
|
|
40
|
+
"@thi.ng/checks": "^3.3.14",
|
|
41
|
+
"@thi.ng/errors": "^2.2.17",
|
|
42
|
+
"@thi.ng/hex": "^2.3.11",
|
|
43
|
+
"@thi.ng/idgen": "^2.1.34",
|
|
44
|
+
"@thi.ng/logger": "^1.4.15"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.
|
|
48
|
-
"@thi.ng/testament": "^0.3.
|
|
49
|
-
"rimraf": "^
|
|
47
|
+
"@microsoft/api-extractor": "^7.35.3",
|
|
48
|
+
"@thi.ng/testament": "^0.3.17",
|
|
49
|
+
"rimraf": "^5.0.1",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
|
-
"typedoc": "^0.
|
|
52
|
-
"typescript": "^5.
|
|
51
|
+
"typedoc": "^0.24.8",
|
|
52
|
+
"typescript": "^5.1.3"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"allocator",
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"status": "alpha",
|
|
116
116
|
"year": 2022
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "54e825a976c72067a244cff8725ca98f5416d26d\n"
|
|
119
119
|
}
|