@thi.ng/wasm-api-schedule 1.0.52 → 1.0.57
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/package.json +98 -98
- package/CHANGELOG.md +0 -82
package/package.json
CHANGED
|
@@ -1,99 +1,99 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}
|
|
2
|
+
"name": "@thi.ng/wasm-api-schedule",
|
|
3
|
+
"version": "1.0.57",
|
|
4
|
+
"description": "Delayed & scheduled function execution (via setTimeout() etc.) for hybrid WASM apps",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./index.js",
|
|
7
|
+
"typings": "./index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://thi.ng/wasm-api-schedule",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "yarn build:esbuild && yarn build:decl",
|
|
32
|
+
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
33
|
+
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
34
|
+
"build:types": "npx wasm-api-bindgen -a analytics.json --lang ts -o src/generated/types.ts --lang zig -o zig/types.zig src/typedefs.json",
|
|
35
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
36
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
37
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
38
|
+
"pub": "npm publish --access public",
|
|
39
|
+
"test": "bun test",
|
|
40
|
+
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@thi.ng/api": "^8.12.7",
|
|
44
|
+
"@thi.ng/wasm-api": "^2.4.8"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@thi.ng/wasm-api-bindgen": "^1.2.51",
|
|
48
|
+
"esbuild": "^0.25.11",
|
|
49
|
+
"typedoc": "^0.28.14",
|
|
50
|
+
"typescript": "^5.9.3"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"browser",
|
|
54
|
+
"codegen",
|
|
55
|
+
"delay",
|
|
56
|
+
"interop",
|
|
57
|
+
"interval",
|
|
58
|
+
"node",
|
|
59
|
+
"scheduler",
|
|
60
|
+
"time",
|
|
61
|
+
"timeout",
|
|
62
|
+
"typescript",
|
|
63
|
+
"wasm",
|
|
64
|
+
"zig"
|
|
65
|
+
],
|
|
66
|
+
"publishConfig": {
|
|
67
|
+
"access": "public"
|
|
68
|
+
},
|
|
69
|
+
"browser": {
|
|
70
|
+
"process": false,
|
|
71
|
+
"setTimeout": false
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18"
|
|
75
|
+
},
|
|
76
|
+
"files": [
|
|
77
|
+
"./*.js",
|
|
78
|
+
"./*.d.ts",
|
|
79
|
+
"zig/*.zig",
|
|
80
|
+
"generated"
|
|
81
|
+
],
|
|
82
|
+
"exports": {
|
|
83
|
+
".": {
|
|
84
|
+
"default": "./index.js"
|
|
85
|
+
},
|
|
86
|
+
"./api": {
|
|
87
|
+
"default": "./api.js"
|
|
88
|
+
},
|
|
89
|
+
"./schedule": {
|
|
90
|
+
"default": "./schedule.js"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"thi.ng": {
|
|
94
|
+
"parent": "@thi.ng/wasm-api",
|
|
95
|
+
"tag": "wasm",
|
|
96
|
+
"year": 2022
|
|
97
|
+
},
|
|
98
|
+
"gitHead": "d977f819bcafdcb2b24c45f8d01a167fe29fc85a\n"
|
|
99
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
- **Last updated**: 2025-09-01T16:38:35Z
|
|
4
|
-
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
-
|
|
6
|
-
All notable changes to this project will be documented in this file.
|
|
7
|
-
Only versions published since **2022-01-01** are listed here.
|
|
8
|
-
Please consult the Git history for older version information.
|
|
9
|
-
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
10
|
-
|
|
11
|
-
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
|
-
and/or version bumps of transitive dependencies.
|
|
13
|
-
|
|
14
|
-
### [1.0.49](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@1.0.49) (2025-09-01)
|
|
15
|
-
|
|
16
|
-
#### ♻️ Refactoring
|
|
17
|
-
|
|
18
|
-
- internal restructure of generated types ([aaa0207](https://github.com/thi-ng/umbrella/commit/aaa0207))
|
|
19
|
-
|
|
20
|
-
### [1.0.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@1.0.9) (2024-11-10)
|
|
21
|
-
|
|
22
|
-
#### ♻️ Refactoring
|
|
23
|
-
|
|
24
|
-
- regenerate typescript bindings ([07e939a](https://github.com/thi-ng/umbrella/commit/07e939a))
|
|
25
|
-
|
|
26
|
-
### [1.0.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@1.0.8) (2024-11-09)
|
|
27
|
-
|
|
28
|
-
#### ♻️ Refactoring
|
|
29
|
-
|
|
30
|
-
- regenerate typescript sources ([9055e0e](https://github.com/thi-ng/umbrella/commit/9055e0e))
|
|
31
|
-
|
|
32
|
-
# [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@1.0.0) (2024-08-18)
|
|
33
|
-
|
|
34
|
-
#### 🛑 Breaking changes
|
|
35
|
-
|
|
36
|
-
- update WasmSchedule, add WasmScheduleModule spec ([5d4dda7](https://github.com/thi-ng/umbrella/commit/5d4dda7))
|
|
37
|
-
- BREAKING CHANGE: update WasmSchedule, add WasmScheduleModule spec
|
|
38
|
-
- add docs
|
|
39
|
-
|
|
40
|
-
#### 🚀 Features
|
|
41
|
-
|
|
42
|
-
- add RAF schedule type, add now() ([47bff01](https://github.com/thi-ng/umbrella/commit/47bff01))
|
|
43
|
-
|
|
44
|
-
### [0.3.47](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@0.3.47) (2023-11-09)
|
|
45
|
-
|
|
46
|
-
#### ♻️ Refactoring
|
|
47
|
-
|
|
48
|
-
- update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
|
|
49
|
-
|
|
50
|
-
### [0.3.20](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@0.3.20) (2023-03-27)
|
|
51
|
-
|
|
52
|
-
#### ♻️ Refactoring
|
|
53
|
-
|
|
54
|
-
- update generated imports ([30b5aa4](https://github.com/thi-ng/umbrella/commit/30b5aa4))
|
|
55
|
-
|
|
56
|
-
### [0.3.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@0.3.2) (2022-11-30)
|
|
57
|
-
|
|
58
|
-
#### ♻️ Refactoring
|
|
59
|
-
|
|
60
|
-
- rename types/imports ([#368](https://github.com/thi-ng/umbrella/issues/368)) ([78d5795](https://github.com/thi-ng/umbrella/commit/78d5795))
|
|
61
|
-
- rename exports/imports interfaces => WasmScheduleExports/Imports
|
|
62
|
-
- update/rename zig imports
|
|
63
|
-
- update readme
|
|
64
|
-
|
|
65
|
-
## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@0.3.0) (2022-11-24)
|
|
66
|
-
|
|
67
|
-
#### 🚀 Features
|
|
68
|
-
|
|
69
|
-
- add check if auto-initializer is present ([f5ad93c](https://github.com/thi-ng/umbrella/commit/f5ad93c))
|
|
70
|
-
|
|
71
|
-
## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/wasm-api-schedule@0.2.0) (2022-11-23)
|
|
72
|
-
|
|
73
|
-
#### 🚀 Features
|
|
74
|
-
|
|
75
|
-
- update & rename pkg (formerly wasm-api-timer) ([668f3dd](https://github.com/thi-ng/umbrella/commit/668f3dd))
|
|
76
|
-
- rename types form `TimerXXX` => `ScheduleXXX`
|
|
77
|
-
- add WASM auto-initializer hook
|
|
78
|
-
- update readmes
|
|
79
|
-
|
|
80
|
-
#### ♻️ Refactoring
|
|
81
|
-
|
|
82
|
-
- rename/update types/arg order ([4af3445](https://github.com/thi-ng/umbrella/commit/4af3445))
|