@invinite-org/chartlang-host-worker 1.1.0 → 1.1.1

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.
@@ -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.1.0",
3
+ "version": "1.1.1",
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.2.0",
31
- "@invinite-org/chartlang-core": "^1.1.0",
32
- "@invinite-org/chartlang-runtime": "^1.1.0"
30
+ "@invinite-org/chartlang-adapter-kit": "^1.2.1",
31
+ "@invinite-org/chartlang-core": "^1.1.1",
32
+ "@invinite-org/chartlang-runtime": "^1.1.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "esbuild": "^0.24.0",