Skip to content

Commit 951f596

Browse files
committed
Updated all interpreters
1 parent e804ccb commit 951f596

File tree

14 files changed

+179
-146
lines changed

14 files changed

+179
-146
lines changed

docs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/zip-CnaQd2o5.js

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

docs/zip-CnaQd2o5.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/interpreter/micropython.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const progress = createProgress('mpy');
2727

2828
export default {
2929
type,
30-
module: (version = '1.26.0-preview-386') =>
30+
module: (version = '1.27.0-preview-255') =>
3131
`https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@${version}/micropython.mjs`,
3232
async engine({ loadMicroPython }, config, url, baseURL) {
3333
const { stderr, stdout, get } = stdio({

esm/interpreter/pyodide.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const indexURLs = new WeakMap();
6969

7070
export default {
7171
type,
72-
module: (version = '0.28.1') =>
72+
module: (version = '0.28.3') =>
7373
`https://cdn.jsdelivr.net/pyodide/v${version}/full/pyodide.mjs`,
7474
async engine({ loadPyodide, version }, config, url, baseURL) {
7575
progress('Loading Pyodide');

esm/interpreter/webr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const run = async (interpreter, code) => {
1919
export default {
2020
type,
2121
experimental: true,
22-
module: (version = '0.5.4') =>
22+
module: (version = '0.5.6') =>
2323
`https://cdn.jsdelivr.net/npm/webr@${version}/dist/webr.mjs`,
2424
async engine(module, config, _, baseURL) {
2525
const { get } = stdio();

node.importmap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"imports": {
33
"http://pyodide": "./test/mocked/pyodide.mjs",
4-
"https://cdn.jsdelivr.net/pyodide/v0.28.1/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5-
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.26.0-preview-386/micropython.mjs": "./test/mocked/micropython.mjs",
4+
"https://cdn.jsdelivr.net/pyodide/v0.28.3/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5+
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.27.0-preview-255/micropython.mjs": "./test/mocked/micropython.mjs",
66
"./3rd-party/toml.js": "./test/mocked/toml.mjs"
77
}
88
}

package-lock.json

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

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@
4646
"author": "Anaconda Inc.",
4747
"license": "APACHE-2.0",
4848
"devDependencies": {
49-
"@node-loader/import-maps": "^1.1.0",
50-
"@playwright/test": "^1.55.0",
49+
"@node-loader/import-maps": "^2.0.0",
50+
"@playwright/test": "^1.55.1",
5151
"@rollup/plugin-node-resolve": "^16.0.1",
5252
"@rollup/plugin-terser": "^0.4.4",
53-
"@zip.js/zip.js": "^2.7.72",
53+
"@zip.js/zip.js": "^2.8.4",
5454
"c8": "^10.1.3",
5555
"chokidar": "^4.0.3",
56-
"eslint": "^9.34.0",
56+
"eslint": "^9.36.0",
5757
"linkedom": "^0.18.12",
58-
"rollup": "^4.49.0",
58+
"rollup": "^4.52.3",
5959
"static-handler": "^0.5.3",
60-
"typescript": "^5.9.2"
60+
"typescript": "^5.9.3"
6161
},
6262
"type": "module",
6363
"module": "./dist/index.js",
@@ -88,13 +88,13 @@
8888
"@webreflection/utils": "^0.1.1",
8989
"basic-devtools": "^0.1.6",
9090
"codedent": "^0.1.2",
91-
"coincident": "^4.0.23",
91+
"coincident": "^4.0.28",
9292
"html-escaper": "^3.0.3",
9393
"reflected-ffi": "^0.6.1",
9494
"sticky-module": "^0.1.1",
9595
"to-json-callback": "^0.1.1"
9696
},
9797
"worker": {
98-
"blob": "sha256-793NDYXZ46XOi7y/2zZMFwpOtxJESk/tvuGnDaYZotI="
98+
"blob": "sha256-SFGBpG+DUkoJQaGefsbsSuCDXfsWGAkvdJvc55ArmbQ="
9999
}
100100
}

0 commit comments

Comments
 (0)