chore: upgrade dependencies
This commit is contained in:
parent
09ccfaad1d
commit
5005aaa5af
13 changed files with 1365 additions and 1265 deletions
4
.github/workflows/linux-aarch64-musl.yaml
vendored
4
.github/workflows/linux-aarch64-musl.yaml
vendored
|
@ -55,8 +55,8 @@ jobs:
|
|||
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
|
||||
run: |
|
||||
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=aarch64-linux-musl-gcc
|
||||
yarn --cwd ./examples/napi-compat-mode build --target aarch64-unknown-linux-musl
|
||||
yarn --cwd ./examples/napi build --target aarch64-unknown-linux-musl
|
||||
yarn workspace compat-mode-examples build --target aarch64-unknown-linux-musl
|
||||
yarn workspace examples build --target aarch64-unknown-linux-musl
|
||||
|
||||
- name: Setup and run tests
|
||||
uses: docker://multiarch/alpine:aarch64-latest-stable
|
||||
|
|
4
.github/workflows/windows-i686.yml
vendored
4
.github/workflows/windows-i686.yml
vendored
|
@ -66,8 +66,8 @@ jobs:
|
|||
|
||||
- name: Build Tests
|
||||
run: |
|
||||
yarn --cwd ./examples/napi-compat-mode build-i686 --release
|
||||
yarn --cwd ./examples/napi build-i686 --release
|
||||
yarn workspace compat-mode-examples build-i686 --release
|
||||
yarn workspace examples build-i686 --release
|
||||
yarn test --verbose
|
||||
env:
|
||||
RUST_BACKTRACE: 1
|
||||
|
|
4
.github/workflows/zig.yaml
vendored
4
.github/workflows/zig.yaml
vendored
|
@ -57,8 +57,8 @@ jobs:
|
|||
run: yarn build
|
||||
- name: Cross build native tests
|
||||
run: |
|
||||
yarn --cwd ./examples/napi-compat-mode build --target ${{ matrix.target }} --zig
|
||||
yarn --cwd ./examples/napi build --target ${{ matrix.target }} --zig
|
||||
yarn workspace compat-mode-examples build --target ${{ matrix.target }} --zig
|
||||
yarn workspace examples build --target ${{ matrix.target }} --zig
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
768
.yarn/releases/yarn-3.1.1.cjs
vendored
768
.yarn/releases/yarn-3.1.1.cjs
vendored
File diff suppressed because one or more lines are too long
785
.yarn/releases/yarn-3.2.0.cjs
vendored
Executable file
785
.yarn/releases/yarn-3.2.0.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
yarnPath: .yarn/releases/yarn-3.1.1.cjs
|
||||
nodeLinker: node-modules
|
||||
npmRegistryServer: https://registry.npmjs.org
|
||||
|
||||
yarnPath: .yarn/releases/yarn-3.2.0.cjs
|
||||
|
|
|
@ -41,16 +41,16 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@octokit/rest": "^18.12.0",
|
||||
"@types/inquirer": "^8.1.3",
|
||||
"@types/inquirer": "^8.2.0",
|
||||
"@types/js-yaml": "^4.0.5",
|
||||
"@types/lodash-es": "^4.17.5",
|
||||
"@types/lodash-es": "^4.17.6",
|
||||
"clipanion": "^3.1.0",
|
||||
"colorette": "^2.0.16",
|
||||
"core-js": "^3.21.0",
|
||||
"core-js": "^3.21.1",
|
||||
"debug": "^4.3.3",
|
||||
"env-paths": "^3.0.0",
|
||||
"fdir": "^5.2.0",
|
||||
"inquirer": "^8.2.0",
|
||||
"inquirer": "^8.2.1",
|
||||
"js-yaml": "^4.1.0",
|
||||
"lodash-es": "4.17.21",
|
||||
"toml": "^3.0.0",
|
||||
|
|
|
@ -133,7 +133,6 @@ test('testDeleteProperty', (t) => {
|
|||
t.true(bindings.testDeleteProperty(obj, 'k4'))
|
||||
t.true(bindings.testDeleteProperty(obj, '__NOT_EXISTED__'))
|
||||
t.true(bindings.testDeleteProperty(obj, k1))
|
||||
// @ts-expect-error
|
||||
t.deepEqual(obj, { [k3]: 'k3' })
|
||||
})
|
||||
|
||||
|
@ -157,7 +156,6 @@ test('testDeleteNamedProperty', (t) => {
|
|||
t.true(bindings.testDeleteNamedProperty(obj, 'k4'))
|
||||
t.true(bindings.testDeleteNamedProperty(obj, '__NOT_EXISTED__'))
|
||||
t.true(bindings.testDeleteNamedProperty(obj, k1))
|
||||
// @ts-expect-error
|
||||
t.deepEqual(obj, { [k3]: 'k3' })
|
||||
})
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"build-release": "node ../../cli/scripts/index.js build --js false --release"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/lodash": "^4.14.178",
|
||||
"@types/lodash": "^4.14.179",
|
||||
"lodash": "^4.17.21"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#![allow(dead_code)]
|
||||
#![allow(unreachable_code)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate napi_derive;
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
"table": "^6.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/dockerode": "^3.3.1"
|
||||
"@types/dockerode": "^3.3.3"
|
||||
}
|
||||
}
|
||||
|
|
34
package.json
34
package.json
|
@ -70,39 +70,39 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-alias": "^3.1.9",
|
||||
"@rollup/plugin-commonjs": "^21.0.1",
|
||||
"@rollup/plugin-commonjs": "^21.0.2",
|
||||
"@rollup/plugin-json": "^4.1.0",
|
||||
"@rollup/plugin-node-resolve": "^13.1.3",
|
||||
"@rollup/plugin-replace": "^3.0.1",
|
||||
"@rollup/plugin-replace": "^4.0.0",
|
||||
"@taplo/cli": "^0.3.2",
|
||||
"@types/debug": "^4.1.7",
|
||||
"@types/lodash-es": "^4.17.5",
|
||||
"@types/node": "^17.0.10",
|
||||
"@types/sinon": "^10.0.8",
|
||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
||||
"@typescript-eslint/parser": "^5.10.0",
|
||||
"ava": "^4.0.1",
|
||||
"@types/lodash-es": "^4.17.6",
|
||||
"@types/node": "^17.0.21",
|
||||
"@types/sinon": "^10.0.11",
|
||||
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
||||
"@typescript-eslint/parser": "^5.14.0",
|
||||
"ava": "^4.1.0",
|
||||
"benny": "^3.7.1",
|
||||
"c8": "^7.11.0",
|
||||
"colorette": "^2.0.16",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild": "^0.14.13",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"esbuild": "^0.14.25",
|
||||
"eslint": "^8.11.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"husky": "^7.0.4",
|
||||
"lerna": "^4.0.0",
|
||||
"lint-staged": "^12.3.1",
|
||||
"lint-staged": "^12.3.5",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.5.1",
|
||||
"rollup": "^2.66.0",
|
||||
"rollup": "^2.70.0",
|
||||
"shx": "^0.3.4",
|
||||
"sinon": "^12.0.1",
|
||||
"sinon": "^13.0.1",
|
||||
"source-map-support": "^0.5.21",
|
||||
"ts-node": "^10.4.0",
|
||||
"ts-node": "^10.7.0",
|
||||
"tslib": "^2.3.1",
|
||||
"typescript": "^4.5.5"
|
||||
"typescript": "^4.6.2"
|
||||
},
|
||||
"packageManager": "yarn@3.1.1"
|
||||
"packageManager": "yarn@3.2.0"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue