Skip to content

Commit d002953

Browse files
committed
Updated MicroPython & Wasmoon
1 parent 2bd8e88 commit d002953

File tree

9 files changed

+85
-71
lines changed

9 files changed

+85
-71
lines changed

docs/core.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/core.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.

esm/interpreter/micropython.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const type = 'micropython';
77
/* c8 ignore start */
88
export default {
99
type,
10-
module: (version = '1.20.0-297') =>
10+
module: (version = '1.21.0-278') =>
1111
`https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@${version}/micropython.mjs`,
1212
async engine({ loadMicroPython }, config, url) {
1313
const { stderr, stdout, get } = stdio();

esm/interpreter/wasmoon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const type = 'wasmoon';
1010
/* c8 ignore start */
1111
export default {
1212
type,
13-
module: (version = '1.15.1') =>
13+
module: (version = '1.16.0') =>
1414
`https://cdn.jsdelivr.net/npm/wasmoon@${version}/+esm`,
1515
async engine({ LuaFactory, LuaLibraries }, config) {
1616
const { stderr, stdout, get } = stdio();

node.importmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"imports": {
33
"http://pyodide": "./test/mocked/pyodide.mjs",
44
"https://cdn.jsdelivr.net/pyodide/v0.24.1/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5-
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.20.0-297/micropython.mjs": "./test/mocked/micropython.mjs",
5+
"https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@1.21.0-278/micropython.mjs": "./test/mocked/micropython.mjs",
66
"https://cdn.jsdelivr.net/npm/[email protected]/es.js": "./test/mocked/toml.mjs"
77
}
88
}

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
"c8": "^8.0.1",
4545
"chokidar": "^3.5.3",
4646
"eslint": "^8.55.0",
47-
"linkedom": "^0.16.4",
48-
"rollup": "^4.6.1",
47+
"linkedom": "^0.16.5",
48+
"rollup": "^4.9.0",
4949
"static-handler": "^0.4.3",
50-
"typescript": "^5.3.2"
50+
"typescript": "^5.3.3"
5151
},
5252
"type": "module",
5353
"module": "./core.js",
@@ -83,6 +83,6 @@
8383
"sticky-module": "^0.1.1"
8484
},
8585
"worker": {
86-
"blob": "sha256-HHn1vC6k2vvHlcr/Nj6N9DNUDO5X6o6y+T2e4/1QfI8="
86+
"blob": "sha256-HzMxq6cZquh//odEM+NnPqiEbGGFtAHGoJ6ldDNmJmE="
8787
}
8888
}

versions/micropython

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.20.0-297
1+
1.21.0-278

versions/wasmoon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.1
1+
1.16.0

0 commit comments

Comments
 (0)