pyodide 0.26.1 → 0.27.0-alpha.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyodide",
3
- "version": "0.26.1",
3
+ "version": "0.27.0-alpha.2",
4
4
  "description": "The Pyodide JavaScript package",
5
5
  "keywords": [
6
6
  "python",
@@ -25,13 +25,13 @@
25
25
  "chai-as-promised": "^7.1.1",
26
26
  "cross-env": "^7.0.3",
27
27
  "dts-bundle-generator": "^8.1.1",
28
- "error-stack-parser": "^2.1.4",
29
28
  "esbuild": "^0.17.12",
30
29
  "express": "^4.17.3",
31
30
  "mocha": "^9.0.2",
32
31
  "npm-run-all": "^4.1.5",
33
32
  "nyc": "^15.1.0",
34
33
  "prettier": "^2.2.1",
34
+ "sinon": "^18.0.0",
35
35
  "ts-mocha": "^9.0.2",
36
36
  "tsd": "^0.24.1",
37
37
  "typedoc": "^0.25.1",
@@ -79,9 +79,10 @@
79
79
  "ws": false
80
80
  },
81
81
  "scripts": {
82
- "build": "tsc --noEmit && node esbuild.config.mjs",
82
+ "build-inner": "node esbuild.config.inner.mjs",
83
+ "build": "tsc --noEmit && node esbuild.config.outer.mjs",
83
84
  "test": "npm-run-all test:*",
84
- "test:unit": "cross-env TEST_NODE=1 ts-mocha --node-option=experimental-loader=./test/loader.mjs --node-option=experimental-wasm-stack-switching -p tsconfig.test.json test/unit/**/*.test.*",
85
+ "test:unit": "cross-env TEST_NODE=1 ts-mocha --node-option=experimental-loader=./test/loader.mjs --node-option=experimental-wasm-stack-switching -p tsconfig.test.json \"test/unit/**\"",
85
86
  "test:node": "cross-env TEST_NODE=1 mocha test/integration/**/*.test.js",
86
87
  "test:browser": "mocha test/integration/**/*.test.js",
87
88
  "tsc": "tsc --noEmit",