Skip to content

Commit f99f95f

Browse files
nodejs-github-botaduh95
authored andcommitted
deps: update corepack to 0.30.0
PR-URL: #55977 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 96e846d commit f99f95f

File tree

10 files changed

+33
-8
lines changed

10 files changed

+33
-8
lines changed

deps/corepack/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.30.0](https://github.com/nodejs/corepack/compare/v0.29.4...v0.30.0) (2024-11-23)
4+
5+
6+
### Features
7+
8+
* update package manager versions ([#578](https://github.com/nodejs/corepack/issues/578)) ([a286c8f](https://github.com/nodejs/corepack/commit/a286c8f5537ea9ecf9b6ff53c7bc3e8da4e3c8bb))
9+
10+
11+
### Performance Improvements
12+
13+
* prefer `module.enableCompileCache` over `v8-compile-cache` ([#574](https://github.com/nodejs/corepack/issues/574)) ([cba6905](https://github.com/nodejs/corepack/commit/cba690575bd606faeee54bd512ccb8797d49055f))
14+
315
## [0.29.4](https://github.com/nodejs/corepack/compare/v0.29.3...v0.29.4) (2024-09-07)
416

517

deps/corepack/dist/corepack.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='0';
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(process.argv.slice(2));

deps/corepack/dist/lib/corepack.cjs

+13-7
Original file line numberDiff line numberDiff line change
@@ -21260,7 +21260,7 @@ function String2(descriptor, ...args) {
2126021260
}
2126121261

2126221262
// package.json
21263-
var version = "0.29.4";
21263+
var version = "0.30.0";
2126421264

2126521265
// sources/Engine.ts
2126621266
var import_fs9 = __toESM(require("fs"));
@@ -21274,7 +21274,7 @@ var import_valid3 = __toESM(require_valid2());
2127421274
var config_default = {
2127521275
definitions: {
2127621276
npm: {
21277-
default: "10.8.3+sha1.e6085b2864fcfd9b1aad7b602601b5a2fc116699",
21277+
default: "10.9.1+sha1.ab141c1229765c11c8c59060fc9cf450a2207bd6",
2127821278
fetchLatestFrom: {
2127921279
type: "npm",
2128021280
package: "npm"
@@ -21311,7 +21311,7 @@ var config_default = {
2131121311
}
2131221312
},
2131321313
pnpm: {
21314-
default: "9.9.0+sha1.3edbe440f4e570aa8f049adbd06b9483d55cc2d2",
21314+
default: "9.14.2+sha1.5202b50ab92394b3c922d2e293f196e2df6d441b",
2131521315
fetchLatestFrom: {
2131621316
type: "npm",
2131721317
package: "pnpm"
@@ -21375,7 +21375,7 @@ var config_default = {
2137521375
package: "yarn"
2137621376
},
2137721377
transparent: {
21378-
default: "4.4.1+sha224.fd21d9eb5fba020083811af1d4953acc21eeb9f6ff97efd1b3f9d4de",
21378+
default: "4.5.2+sha224.c2e2e9ed3cdadd6ec250589b3393f71ae56d5ec297af11cec1eba3b4",
2137921379
commands: [
2138021380
[
2138121381
"yarn",
@@ -21965,8 +21965,11 @@ async function runVersion(locator, installSpec, binName, args) {
2196521965
}
2196621966
if (!binPath)
2196721967
throw new Error(`Assertion failed: Unable to locate path for bin '${binName}'`);
21968-
if (locator.name !== `npm` || (0, import_lt.default)(locator.reference, `9.7.0`))
21969-
await Promise.resolve().then(() => __toESM(require_v8_compile_cache()));
21968+
if (!import_module.default.enableCompileCache) {
21969+
if (locator.name !== `npm` || (0, import_lt.default)(locator.reference, `9.7.0`)) {
21970+
await Promise.resolve().then(() => __toESM(require_v8_compile_cache()));
21971+
}
21972+
}
2197021973
process.env.COREPACK_ROOT = import_path7.default.dirname(require.resolve("corepack/package.json"));
2197121974
process.argv = [
2197221975
process.execPath,
@@ -21976,6 +21979,9 @@ async function runVersion(locator, installSpec, binName, args) {
2197621979
process.execArgv = [];
2197721980
process.mainModule = void 0;
2197821981
process.nextTick(import_module.default.runMain, binPath);
21982+
if (import_module.default.flushCompileCache) {
21983+
setImmediate(import_module.default.flushCompileCache);
21984+
}
2197921985
}
2198021986
function shouldSkipIntegrityCheck() {
2198121987
return process.env.COREPACK_INTEGRITY_KEYS === `` || process.env.COREPACK_INTEGRITY_KEYS === `0`;
@@ -22553,7 +22559,7 @@ var EnableCommand = class extends Command {
2255322559
[`enable`]
2255422560
];
2255522561
static usage = Command.Usage({
22556-
description: `Add the Corepack shims to the install directories`,
22562+
description: `Add the Corepack shims to the install directory`,
2255722563
details: `
2255822564
When run, this command will check whether the shims for the specified package managers can be found with the correct values inside the install directory. If not, or if they don't exist, they will be created.
2255922565

deps/corepack/dist/npm.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['npm', ...process.argv.slice(2)]);

deps/corepack/dist/npx.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['npx', ...process.argv.slice(2)]);

deps/corepack/dist/pnpm.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['pnpm', ...process.argv.slice(2)]);

deps/corepack/dist/pnpx.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['pnpx', ...process.argv.slice(2)]);

deps/corepack/dist/yarn.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['yarn', ...process.argv.slice(2)]);

deps/corepack/dist/yarnpkg.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env node
22
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
3+
require('module').enableCompileCache?.();
34
require('./lib/corepack.cjs').runMain(['yarnpkg', ...process.argv.slice(2)]);

deps/corepack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "corepack",
3-
"version": "0.29.4",
3+
"version": "0.30.0",
44
"homepage": "https://github.com/nodejs/corepack#readme",
55
"bugs": {
66
"url": "https://github.com/nodejs/corepack/issues"

0 commit comments

Comments
 (0)