Skip to content

Commit 748bc96

Browse files
nodejs-github-botBethGriggs
authored andcommittedMar 23, 2023
deps: update corepack to 0.16.0
PR-URL: #46710 Backport-PR-URL: #45644 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
1 parent a467782 commit 748bc96

5 files changed

+44147
-58149
lines changed
 

‎deps/corepack/CHANGELOG.md

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

3+
## [0.16.0](https://github.com/nodejs/corepack/compare/v0.15.3...v0.16.0) (2023-02-17)
4+
5+
6+
### Features
7+
8+
* update package manager versions ([#228](https://github.com/nodejs/corepack/issues/228)) ([bb000f9](https://github.com/nodejs/corepack/commit/bb000f9c10a1fbd85f2c15a90218d90b42473130))
9+
* build: migrate to ESBuild ([#229](https://github.com/nodejs/corepack/pull/229)) ([15ceb83](https://github.com/nodejs/corepack/commit/15ceb832a34a223efbe3d3f9cb792d9101a7022a))
10+
11+
12+
### Bug Fixes
13+
14+
* npm registry override ([#219](https://github.com/nodejs/corepack/issues/219)) ([1b35362](https://github.com/nodejs/corepack/commit/1b353624e644874d9ef6c9acaf6d1254bff3015a))
15+
316
## [0.15.3](https://github.com/nodejs/corepack/compare/v0.15.2...v0.15.3) (2022-12-30)
417

518

‎deps/corepack/dist/corepack.js

+44,125-16,435
Large diffs are not rendered by default.

‎deps/corepack/dist/vcc.js

-424
This file was deleted.

‎deps/corepack/dist/vendors-_yarn_berry_cache_proxy-agent-npm-5_0_0-41772f4b01-9_zip_node_modules_proxy-agent_index_js.js

-41,282
This file was deleted.

‎deps/corepack/package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.15.3",
3+
"version": "0.16.0",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"
@@ -9,6 +9,9 @@
99
"type": "git",
1010
"url": "https://github.com/nodejs/corepack.git"
1111
},
12+
"engines": {
13+
"node": ">=14.14.0"
14+
},
1215
"license": "MIT",
1316
"packageManager": "yarn@4.0.0-rc.15+sha224.7fa5c1d1875b041cea8fcbf9a364667e398825364bf5c5c8cd5f6601",
1417
"devDependencies": {
@@ -29,6 +32,7 @@
2932
"babel-plugin-dynamic-import-node": "^2.3.3",
3033
"clipanion": "^3.0.1",
3134
"debug": "^4.1.1",
35+
"esbuild": "0.16.15",
3236
"eslint": "^8.0.0",
3337
"eslint-plugin-arca": "^0.15.0",
3438
"jest": "^29.0.0",
@@ -37,23 +41,20 @@
3741
"semver": "^7.1.3",
3842
"supports-color": "^9.0.0",
3943
"tar": "^6.0.1",
40-
"terser-webpack-plugin": "^5.1.2",
41-
"ts-loader": "^9.0.0",
4244
"ts-node": "^10.0.0",
4345
"typescript": "^4.3.2",
4446
"v8-compile-cache": "^2.3.0",
45-
"webpack": "^5.38.1",
46-
"webpack-cli": "^4.0.0",
4747
"which": "^2.0.2"
4848
},
4949
"scripts": {
50-
"build": "rm -rf dist shims && webpack && ts-node ./mkshims.ts",
50+
"build": "rm -rf dist shims && run build:bundle && ts-node ./mkshims.ts",
51+
"build:bundle": "esbuild ./sources/_entryPoint.ts --bundle --platform=node --target=node14.14.0 --external:corepack --outfile='./dist/corepack.js' --resolve-extensions='.ts,.mjs,.js'",
5152
"corepack": "ts-node ./sources/_entryPoint.ts",
52-
"lint": "yarn eslint",
53+
"lint": "eslint .",
5354
"prepack": "yarn build",
5455
"postpack": "rm -rf dist shims",
5556
"typecheck": "tsc --noEmit",
56-
"test": "yarn jest"
57+
"test": "jest"
5758
},
5859
"files": [
5960
"dist",

0 commit comments

Comments
 (0)
Please sign in to comment.