@thi.ng/wasm-api-schedule 0.3.80 → 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 +1 -1
- package/README.md +8 -8
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
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
|
-
|
|
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.
|
|
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.
|
|
41
|
-
"@thi.ng/wasm-api": "^1.4.
|
|
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.
|
|
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": "
|
|
99
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
100
100
|
}
|