@thi.ng/wasm-api-schedule 1.0.18 → 1.0.20

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-04T21:07:38Z
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-schedule",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "description": "Delayed & scheduled function execution (via setTimeout() etc.) for hybrid WASM apps",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -41,12 +41,12 @@
41
41
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
42
42
  },
43
43
  "dependencies": {
44
- "@thi.ng/api": "^8.11.16",
45
- "@thi.ng/wasm-api": "^2.3.1"
44
+ "@thi.ng/api": "^8.11.17",
45
+ "@thi.ng/wasm-api": "^2.3.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@microsoft/api-extractor": "^7.48.1",
49
- "@thi.ng/wasm-api-bindgen": "^1.1.1",
49
+ "@thi.ng/wasm-api-bindgen": "^1.1.4",
50
50
  "esbuild": "^0.24.2",
51
51
  "typedoc": "^0.27.6",
52
52
  "typescript": "^5.7.2"
@@ -96,5 +96,5 @@
96
96
  "parent": "@thi.ng/wasm-api",
97
97
  "year": 2022
98
98
  },
99
- "gitHead": "6542b842120bef47cc18d45a1b1db68307a7f04b\n"
99
+ "gitHead": "22f6d518aed5951bb37b406c8ae85a6c3e6be517\n"
100
100
  }
package/zig/lib.zig CHANGED
@@ -1,3 +1,4 @@
1
+ // SPDX-License-Identifier: Apache-2.0
1
2
  const std = @import("std");
2
3
  const wasm = @import("wasm-api");
3
4
  const api = @import("api.zig");