Merge branch 'main' into fix/object-get-null
This commit is contained in:
commit
2c8d418cdf
10 changed files with 857 additions and 849 deletions
4
.github/workflows/test-release.yaml
vendored
4
.github/workflows/test-release.yaml
vendored
|
@ -83,7 +83,7 @@ jobs:
|
|||
yarn tsc -p examples/napi/tsconfig.json --noEmit --skipLibCheck
|
||||
yarn test:macro
|
||||
toolchain: 1.65.0
|
||||
- host: macos-latest
|
||||
- host: macos-14
|
||||
target: x86_64-apple-darwin
|
||||
build: yarn build:test
|
||||
test: |
|
||||
|
@ -479,7 +479,7 @@ jobs:
|
|||
run: cargo check -p ${{ matrix.settings.package }} -F ${{ matrix.settings.features }}
|
||||
|
||||
test-node-wasi:
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-14
|
||||
name: Test node wasi target
|
||||
timeout-minutes: 10
|
||||
steps:
|
||||
|
|
|
@ -73,8 +73,8 @@
|
|||
"clipanion": "^3.2.1",
|
||||
"colorette": "^2.0.20",
|
||||
"debug": "^4.3.4",
|
||||
"emnapi": "0.45.0",
|
||||
"inquirer": "^9.2.12",
|
||||
"emnapi": "1.0.0",
|
||||
"inquirer": "^9.2.13",
|
||||
"js-yaml": "^4.1.0",
|
||||
"lodash-es": "^4.17.21",
|
||||
"semver": "^7.5.4",
|
||||
|
@ -82,25 +82,24 @@
|
|||
"typanion": "^3.14.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@emnapi/core": "^0.45.0",
|
||||
"@emnapi/runtime": "^0.45.0",
|
||||
"@emnapi/core": "^1.0.0",
|
||||
"@emnapi/runtime": "^1.0.0",
|
||||
"@types/debug": "^4.1.12",
|
||||
"@types/inquirer": "^9.0.7",
|
||||
"@types/js-yaml": "^4.0.9",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/node": "^20.10.5",
|
||||
"ava": "^6.0.0",
|
||||
"@types/node": "^20.11.13",
|
||||
"ava": "^6.1.1",
|
||||
"env-paths": "^3.0.0",
|
||||
"esbuild": "^0.20.0",
|
||||
"prettier": "^3.1.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"prettier": "^3.2.4",
|
||||
"ts-node": "^10.9.2",
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.3.2"
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emnapi/runtime": "^0.45.0",
|
||||
"@tybys/wasm-util": "^0.8.0",
|
||||
"emnapi": "^0.45.0"
|
||||
"@emnapi/runtime": "^1.0.0",
|
||||
"emnapi": "^1.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@emnapi/runtime": {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@napi-rs/cli": "workspace:*",
|
||||
"ava": "^6.0.0",
|
||||
"ava": "^6.1.1",
|
||||
"sinon": "^17.0.1"
|
||||
},
|
||||
"ava": {
|
||||
|
|
|
@ -13,18 +13,18 @@
|
|||
"devDependencies": {
|
||||
"@napi-rs/cli": "workspace:*",
|
||||
"@napi-rs/wasm-runtime": "workspace:*",
|
||||
"@types/lodash": "^4.14.201",
|
||||
"@vitest/browser": "^1.1.3",
|
||||
"@vitest/ui": "^1.1.3",
|
||||
"ava": "^6.0.0",
|
||||
"@types/lodash": "^4.14.202",
|
||||
"@vitest/browser": "^1.2.2",
|
||||
"@vitest/ui": "^1.2.2",
|
||||
"ava": "^6.1.1",
|
||||
"cross-env": "7.0.3",
|
||||
"electron": "^28.0.0",
|
||||
"electron": "^28.2.0",
|
||||
"lodash": "^4.17.21",
|
||||
"sinon": "^17.0.1",
|
||||
"vite": "^5.0.11",
|
||||
"vite": "^5.0.12",
|
||||
"vite-plugin-node-polyfills": "^0.19.0",
|
||||
"vitest": "^1.1.3",
|
||||
"webdriverio": "^8.27.0"
|
||||
"vitest": "^1.2.2",
|
||||
"webdriverio": "^8.29.3"
|
||||
},
|
||||
"ava": {
|
||||
"extensions": {
|
||||
|
@ -39,7 +39,7 @@
|
|||
"timeout": "10m"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emnapi/core": "0.45.0",
|
||||
"@emnapi/core": "1.0.0",
|
||||
"@types/lodash": "^4.14.202",
|
||||
"lodash": "^4.17.21",
|
||||
"sinon": "^17.0.1"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"colorette": "^2.0.20",
|
||||
"dockerode": "^4.0.0",
|
||||
"dockerode": "^4.0.2",
|
||||
"pretty-bytes": "^6.1.1",
|
||||
"table": "^6.8.1"
|
||||
},
|
||||
|
|
36
package.json
36
package.json
|
@ -68,31 +68,31 @@
|
|||
"@taplo/cli": "^0.5.2",
|
||||
"@types/debug": "^4.1.12",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/node": "^20.10.3",
|
||||
"@types/sinon": "^17.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
||||
"@typescript-eslint/parser": "^6.13.2",
|
||||
"ava": "^6.0.0",
|
||||
"bun-types": "^1.0.15",
|
||||
"c8": "^9.0.0",
|
||||
"@types/node": "^20.11.13",
|
||||
"@types/sinon": "^17.0.3",
|
||||
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
||||
"@typescript-eslint/parser": "^6.20.0",
|
||||
"ava": "^6.1.1",
|
||||
"bun-types": "^1.0.25",
|
||||
"c8": "^9.1.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"electron": "^28.0.0",
|
||||
"electron": "^28.2.0",
|
||||
"esbuild": "^0.20.0",
|
||||
"eslint": "^8.55.0",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-import": "^2.29.0",
|
||||
"husky": "^9.0.6",
|
||||
"lerna": "^8.0.0",
|
||||
"lint-staged": "^15.2.0",
|
||||
"npm-run-all2": "^6.0.0",
|
||||
"prettier": "^3.1.0",
|
||||
"rollup": "^4.9.5",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"husky": "^9.0.7",
|
||||
"lerna": "^8.0.2",
|
||||
"lint-staged": "^15.2.1",
|
||||
"npm-run-all2": "^6.1.1",
|
||||
"prettier": "^3.2.4",
|
||||
"rollup": "^4.9.6",
|
||||
"shx": "^0.3.4",
|
||||
"sinon": "^17.0.1",
|
||||
"source-map-support": "^0.5.21",
|
||||
"ts-node": "^10.9.1",
|
||||
"ts-node": "^10.9.2",
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.3.2"
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"packageManager": "yarn@4.1.0",
|
||||
"resolutions": {
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
{
|
||||
"automerge": true,
|
||||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
|
||||
},
|
||||
{
|
||||
"matchPackageNames": ["emnapi", "^@emnapi"],
|
||||
"rangeStrategy": "replace",
|
||||
"groupName": "napi-rs"
|
||||
}
|
||||
],
|
||||
"lockFileMaintenance": {
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
"build": "node --loader ts-node/esm/transpile-only ./generate-triple-list.ts && prettier --write ./index.cjs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.5",
|
||||
"@types/node": "^20.11.13",
|
||||
"lodash-es": "^4.17.21",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^5.3.2"
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"@rollup/plugin-alias": "^5.1.0",
|
||||
"@rollup/plugin-commonjs": "^25.0.7",
|
||||
"@rollup/plugin-inject": "^5.0.5",
|
||||
"@rollup/plugin-json": "^6.0.1",
|
||||
"@rollup/plugin-json": "^6.1.0",
|
||||
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||
"@rollup/plugin-replace": "^5.0.5",
|
||||
"buffer": "^6.0.3",
|
||||
|
@ -34,13 +34,13 @@
|
|||
"path-browserify": "^1.0.1",
|
||||
"process": "^0.11.10",
|
||||
"readable-stream": "^4.5.2",
|
||||
"rollup": "^4.9.5",
|
||||
"rollup": "^4.9.6",
|
||||
"rollup-plugin-polyfill-node": "^0.13.0",
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emnapi/core": "^0.45.0",
|
||||
"@emnapi/runtime": "^0.45.0",
|
||||
"@emnapi/core": "^1.0.0",
|
||||
"@emnapi/runtime": "^1.0.0",
|
||||
"@tybys/wasm-util": "^0.8.1"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue