@basthon/kernel-javascript 0.72.6 → 0.72.8

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.
Files changed (2) hide show
  1. package/lib/kernel.js +0 -1
  2. package/package.json +3 -3
package/lib/kernel.js CHANGED
@@ -5,7 +5,6 @@ export class JavaScriptKernel extends KernelMainBase {
5
5
  }
6
6
  newWorker() {
7
7
  return new Worker(new URL("./comlink-worker.js", import.meta.url), {
8
- type: "module",
9
8
  //@ts-ignore
10
9
  sandboxed: true, // removing this line will cause security issues
11
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basthon/kernel-javascript",
3
- "version": "0.72.6",
3
+ "version": "0.72.8",
4
4
  "description": "Basthon - JavaScript Kernel",
5
5
  "homepage": "https://basthon.fr",
6
6
  "bugs": {
@@ -25,7 +25,7 @@
25
25
  "clean": "rimraf lib/"
26
26
  },
27
27
  "dependencies": {
28
- "@basthon/kernel-base": "0.72.6",
28
+ "@basthon/kernel-base": "0.72.8",
29
29
  "comlink": "^4.4.1",
30
30
  "object-inspect": "^1.13.1"
31
31
  },
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "fb117eb5cdf5b257e284c1ed32d20ea40e979e79"
40
+ "gitHead": "042091b898ac69843dd84c41ff2f15d9e3c8b8a4"
41
41
  }