8000 Fix #2220 - Make the minifier happier · WebReflection/pyscript@e2850a3 · GitHub
[go: up one dir, main page]

Skip to content

Commit e2850a3

Browse files
committed
Fix pyscript#2220 - Make the minifier happier
1 parent 00e6cfe commit e2850a3

File tree

3 files changed

+82
-64
lines changed

3 files changed

+82
-64
lines changed

core/package-lock.json

Lines changed: 76 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pyscript/core",
3-
"version": "0.6.7",
3+
"version": "0.6.10",
44
"type": "module",
55
"description": "PyScript",
66
"module": "./index.js",
@@ -63,13 +63,13 @@
6363
"add-promise-listener": "^0.1.3",
6464
"basic-devtools": "^0.1.6",
6565
"polyscript": "^0.16.3",
66-
"sabayon": "^0.5.2",
66+
"sabayon": "^0.6.0",
6767
"sticky-module": "^0.1.1",
6868
"to-json-callback": "^0.1.1",
6969
"type-checked-collections": "^0.1.7"
7070
},
7171
"devDependencies": {
72-
"@codemirror/commands": "^6.7.0",
72+
"@codemirror/commands": "^6.7.1",
7373
"@codemirror/lang-python": "^6.1.6",
7474
"@codemirror/language": "^6.10.3",
7575
"@codemirror/state": "^6.4.1",
@@ -81,11 +81,11 @@
8181
"@webreflection/toml-j0.4": "^1.1.3",
8282
"@xterm/addon-fit": "^0.10.0",
8383
"@xterm/addon-web-links": "^0.11.0",
84-
"bun": "^1.1.30",
84+
"bun": "^1.1.33",
8585
"chokidar": "^4.0.1",
8686
"codedent": "^0.1.2",
8787
"codemirror": "^6.0.1",
88-
"eslint": "^9.12.0",
88+
"eslint": "^9.13.0",
8989
"flatted": "^3.3.1",
9090
"rollup": "^4.24.0",
9191
"rollup-plugin-postcss": "^4.0.2",

core/src/plugins/error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// PyScript Error Plugin
22
import { buffered } from "polyscript/exports";
3-
import { hooks } from "../core.js";
3+
const { hooks } = await import(/* webpackIgnore: true */ "../core.js");
44

55
let dontBotherDOM = false;
66
export function notOnDOM() {

0 commit comments

Comments
 (0)
0