@thi.ng/wasm-api-schedule 0.3.81 → 0.3.82

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**: 2024-03-27T09:53:46Z
3
+ - **Last updated**: 2024-04-08T14:59:30Z
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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
10
+ > This is one of 191 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -90,7 +90,13 @@ example projects for more advanced usage...
90
90
  yarn add @thi.ng/wasm-api-schedule
91
91
  ```
92
92
 
93
- ES module import:
93
+ ESM import:
94
+
95
+ ```ts
96
+ import * as was from "@thi.ng/wasm-api-schedule";
97
+ ```
98
+
99
+ Browser ESM import:
94
100
 
95
101
  ```html
96
102
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/wasm-api-schedule"></script>
@@ -98,12 +104,6 @@ ES module import:
98
104
 
99
105
  [Skypack documentation](https://docs.skypack.dev/)
100
106
 
101
- For Node.js REPL:
102
-
103
- ```js
104
- const wasmApiSchedule = await import("@thi.ng/wasm-api-schedule");
105
- ```
106
-
107
107
  Package sizes (brotli'd, pre-treeshake): ESM: 491 bytes
108
108
 
109
109
  ## Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/wasm-api-schedule",
3
- "version": "0.3.81",
3
+ "version": "0.3.82",
4
4
  "description": "Delayed & scheduled function execution (via setTimeout() etc.) for hybrid WASM apps",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,12 +37,12 @@
37
37
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.9.31",
41
- "@thi.ng/wasm-api": "^1.4.66"
40
+ "@thi.ng/api": "^8.10.0",
41
+ "@thi.ng/wasm-api": "^1.4.67"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.43.0",
45
- "@thi.ng/wasm-api-bindgen": "^0.4.66",
45
+ "@thi.ng/wasm-api-bindgen": "^0.4.67",
46
46
  "esbuild": "^0.20.2",
47
47
  "rimraf": "^5.0.5",
48
48
  "typedoc": "^0.25.12",
@@ -96,5 +96,5 @@
96
96
  "status": "alpha",
97
97
  "year": 2022
98
98
  },
99
- "gitHead": "ce5ae2a322d50a7ce8ecccbd94fa55c496ba04fd\n"
99
+ "gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
100
100
  }