Skip to content

Commit f228dc7

Browse files
nodejs-github-bottargos
authored andcommittedOct 26, 2023
deps: update corepack to 0.22.0
PR-URL: #50325 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
1 parent 4324eba commit f228dc7

File tree

3 files changed

+4132
-936
lines changed

3 files changed

+4132
-936
lines changed
 

‎deps/corepack/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.22.0](https://github.com/nodejs/corepack/compare/v0.21.0...v0.22.0) (2023-10-21)
4+
5+
6+
### Features
7+
8+
* allow fallback to application/json for custom registries ([#314](https://github.com/nodejs/corepack/issues/314)) ([92f8e71](https://github.com/nodejs/corepack/commit/92f8e71f8c97c44f404ce9b7df8787a4292e6830))
9+
* update package manager versions ([#318](https://github.com/nodejs/corepack/issues/318)) ([0bd2577](https://github.com/nodejs/corepack/commit/0bd2577bb4c6c3a5a33ecdb3b6ca2ff244c54f28))
10+
311
## [0.21.0](https://github.com/nodejs/corepack/compare/v0.20.0...v0.21.0) (2023-10-08)
412

513

‎deps/corepack/dist/lib/corepack.cjs

+4,117-929
Large diffs are not rendered by default.

‎deps/corepack/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.21.0",
3+
"version": "0.22.0",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"
@@ -16,7 +16,7 @@
1616
"./package.json": "./package.json"
1717
},
1818
"license": "MIT",
19-
"packageManager": "yarn@4.0.0-rc.50+sha256.6663791fa05e15176880da500c334caf1699541f834302e6df085d20ef06069d",
19+
"packageManager": "yarn@4.0.0-rc.53+sha256.00e0111b9741a6b886c659a49b06d4ccb16e5d568bd1006c2d1f80bc48393c9b",
2020
"devDependencies": {
2121
"@babel/core": "^7.14.3",
2222
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
@@ -28,17 +28,17 @@
2828
"@types/semver": "^7.1.0",
2929
"@types/tar": "^6.0.0",
3030
"@types/which": "^3.0.0",
31-
"@typescript-eslint/eslint-plugin": "^5.0.0",
32-
"@typescript-eslint/parser": "^5.0.0",
31+
"@typescript-eslint/eslint-plugin": "^6.8.0",
32+
"@typescript-eslint/parser": "^6.8.0",
3333
"@yarnpkg/eslint-config": "^0.6.0-rc.7",
3434
"@yarnpkg/fslib": "^3.0.0-rc.48",
3535
"@zkochan/cmd-shim": "^6.0.0",
3636
"babel-plugin-dynamic-import-node": "^2.3.3",
3737
"clipanion": "^3.0.1",
3838
"debug": "^4.1.1",
39-
"esbuild": "0.17.19",
39+
"esbuild": "0.19.5",
4040
"eslint": "^8.0.0",
41-
"eslint-plugin-arca": "^0.15.0",
41+
"eslint-plugin-arca": "^0.16.0",
4242
"jest": "^29.0.0",
4343
"nock": "^13.0.4",
4444
"proxy-agent": "^6.2.2",
@@ -48,7 +48,7 @@
4848
"ts-node": "^10.0.0",
4949
"typescript": "^5.0.4",
5050
"v8-compile-cache": "^2.3.0",
51-
"which": "^3.0.0"
51+
"which": "^4.0.0"
5252
},
5353
"scripts": {
5454
"build": "rm -rf dist shims && run build:bundle && ts-node ./mkshims.ts",

0 commit comments

Comments
 (0)
Please sign in to comment.