Skip to content

Commit 0e78fd5

Browse files
nodejs-github-botdanielleadams
authored andcommitted
deps: update corepack to 0.17.0
PR-URL: #46842 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
1 parent 31578ab commit 0e78fd5

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

deps/corepack/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/nodejs/corepack/compare/v0.16.0...v0.17.0) (2023-02-24)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add `"exports"` to the `package.json` ([#239](https://github.com/nodejs/corepack/issues/239))
9+
10+
### Features
11+
12+
* update package manager versions ([#242](https://github.com/nodejs/corepack/issues/242)) ([5141639](https://github.com/nodejs/corepack/commit/5141639af8198a343105be1e98a74f7c9e152472))
13+
14+
15+
### Bug Fixes
16+
17+
* add `"exports"` to the `package.json` ([#239](https://github.com/nodejs/corepack/issues/239)) ([8e12d08](https://github.com/nodejs/corepack/commit/8e12d088dec171c03e90f623895a1fbf867130e6))
18+
319
## [0.16.0](https://github.com/nodejs/corepack/compare/v0.15.3...v0.16.0) (2023-02-17)
420

521

deps/corepack/dist/corepack.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -43737,7 +43737,7 @@ function String2(descriptor, ...args) {
4373743737
}
4373843738

4373943739
// package.json
43740-
var version = "0.16.0";
43740+
var version = "0.17.0";
4374143741

4374243742
// sources/Engine.ts
4374343743
var import_fs3 = __toESM(require("fs"));
@@ -43749,7 +43749,7 @@ var import_semver3 = __toESM(require_semver2());
4374943749
var config_default = {
4375043750
definitions: {
4375143751
npm: {
43752-
default: "9.5.0+sha1.75f0d6d27c0a4cc403cd9e1e68ac574555e3b43d",
43752+
default: "9.5.1+sha1.dc74eb85d07d78e24fadc674968a1ea16b18108c",
4375343753
fetchLatestFrom: {
4375443754
type: "npm",
4375543755
package: "npm"
@@ -43780,7 +43780,7 @@ var config_default = {
4378043780
}
4378143781
},
4378243782
pnpm: {
43783-
default: "7.27.0+sha1.572d3b6d6b0ff64f11edd1c4e8774cc7351f1089",
43783+
default: "7.27.1+sha1.75c15a7a16389531192dab282e45aacdac1ed4c0",
4378443784
fetchLatestFrom: {
4378543785
type: "npm",
4378643786
package: "pnpm"

deps/corepack/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"
@@ -12,6 +12,9 @@
1212
"engines": {
1313
"node": ">=14.14.0"
1414
},
15+
"exports": {
16+
"./package.json": "./package.json"
17+
},
1518
"license": "MIT",
1619
"packageManager": "[email protected]+sha224.7fa5c1d1875b041cea8fcbf9a364667e398825364bf5c5c8cd5f6601",
1720
"devDependencies": {

0 commit comments

Comments
 (0)