@thi.ng/wasm-api 2.3.2 → 2.3.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-14T12:23:33Z
3
+ - **Last updated**: 2025-01-21T15:46:53Z
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/wasm-api",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -43,13 +43,13 @@
43
43
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
44
44
  },
45
45
  "dependencies": {
46
- "@thi.ng/api": "^8.11.16",
47
- "@thi.ng/arrays": "^2.10.11",
48
- "@thi.ng/checks": "^3.6.19",
49
- "@thi.ng/errors": "^2.5.22",
50
- "@thi.ng/hex": "^2.3.60",
51
- "@thi.ng/idgen": "^2.2.56",
52
- "@thi.ng/logger": "^3.0.27"
46
+ "@thi.ng/api": "^8.11.17",
47
+ "@thi.ng/arrays": "^2.10.12",
48
+ "@thi.ng/checks": "^3.6.20",
49
+ "@thi.ng/errors": "^2.5.23",
50
+ "@thi.ng/hex": "^2.3.61",
51
+ "@thi.ng/idgen": "^2.2.57",
52
+ "@thi.ng/logger": "^3.0.28"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@microsoft/api-extractor": "^7.48.1",
@@ -128,5 +128,5 @@
128
128
  "status": "alpha",
129
129
  "year": 2022
130
130
  },
131
- "gitHead": "d888087b36b086fd8c3e7dc98d35857266f78942\n"
131
+ "gitHead": "22f6d518aed5951bb37b406c8ae85a6c3e6be517\n"
132
132
  }
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  //! DEPRECATED build helpers for using modules/packages distributed via NPM
2
3
  //! Intended for use with https://thi.ng/wasm-api and support packages
3
4
  //!
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  //! DEPRECATED build helpers for using modules/packages distributed via NPM
2
3
  //! Intended for use with https://thi.ng/wasm-api and support packages
3
4
  //!
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  //! Build helpers for using modules/packages distributed via NPM
2
3
  //! Intended for use with https://thi.ng/wasm-api and support packages
3
4
  //!
package/zig/build.zig CHANGED
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  //! Build helpers for using modules/packages distributed via NPM
2
3
  //! Intended for use with https://thi.ng/wasm-api and support packages
3
4
  //!
package/zig/lib.zig CHANGED
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  //! Zig API for https://thi.ng/wasm-api
2
3
 
3
4
  const std = @import("std");
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  const std = @import("std");
2
3
  const builtin = @import("builtin");
3
4
  const Allocator = std.mem.Allocator;
package/zig/tests.zig CHANGED
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  test {
2
3
  _ = @import("managed-index.zig");
3
4
  _ = @import("lib.zig");