@invinite-org/chartlang-host-worker 1.1.0 → 1.2.0
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 +77 -0
- package/dist/createWorkerBoot.d.ts.map +1 -1
- package/dist/createWorkerBoot.js +17 -0
- package/dist/createWorkerBoot.js.map +1 -1
- package/dist/createWorkerHost.js.map +1 -1
- package/dist/defaultWorkerFactory.js.map +1 -1
- package/dist/filterEmissions.js.map +1 -1
- package/dist/idb.js.map +1 -1
- package/dist/idbStateStore.js +1 -1
- package/dist/idbStateStore.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/limits.js.map +1 -1
- package/dist/protocol.js.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/worker-boot.js +2898 -2309
- package/dist/worker-boot.js.map +4 -4
- package/dist/workerBoot.js.map +1 -1
- package/package.json +4 -4
package/dist/workerBoot.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workerBoot.js","sourceRoot":"","sources":["../src/workerBoot.ts"],"names":[],"mappings":"AAAA,+DAA+D;AAC/D,+DAA+D;AAE/D;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,gBAAgB,EAAwB,MAAM,uBAAuB,CAAC;AAE/E,gBAAgB,CAAC,IAAkC,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"workerBoot.js","sourceRoot":"","sources":["../src/workerBoot.ts"],"names":[],"mappings":"AAAA,+DAA+D;AAC/D,+DAA+D;AAE/D;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,gBAAgB,EAAwB,MAAM,uBAAuB,CAAC;AAE/E,gBAAgB,CAAC,IAAkC,CAAC,CAAC","sourcesContent":["// Copyright (c) 2026 Invinite. Licensed under the MIT License.\n// See the LICENSE file in the repo root for full license text.\n\n/**\n * Production worker entry. Bundled to `dist/worker-boot.js` via\n * `scripts/buildWorkerBoot.ts` and loaded by the main-side host through a\n * `new URL(\"./worker-boot.js\", import.meta.url)` reference (see\n * `defaultWorkerFactory.ts`).\n *\n * The boot logic itself lives in {@link createWorkerBoot} so it can be\n * unit-tested against a `MessageChannel` port — this file is the thin\n * `self` adapter and is excluded from coverage (`vitest.config.ts`).\n *\n * @since 0.1\n * @stable\n */\n\nimport { createWorkerBoot, type WorkerBootScope } from \"./createWorkerBoot.js\";\n\ncreateWorkerBoot(self as unknown as WorkerBootScope);\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invinite-org/chartlang-host-worker",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Web Worker ScriptHost for the browser",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"LICENSE"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@invinite-org/chartlang-adapter-kit": "^1.
|
|
31
|
-
"@invinite-org/chartlang-
|
|
32
|
-
"@invinite-org/chartlang-
|
|
30
|
+
"@invinite-org/chartlang-adapter-kit": "^1.3.0",
|
|
31
|
+
"@invinite-org/chartlang-runtime": "^1.2.0",
|
|
32
|
+
"@invinite-org/chartlang-core": "^1.2.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"esbuild": "^0.24.0",
|