pnpm 11.5.3 → 11.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pnpm.mjs +331 -143
- package/package.json +1 -1
package/dist/pnpm.mjs
CHANGED
|
@@ -32382,7 +32382,7 @@ var init_lib7 = __esm({
|
|
|
32382
32382
|
"use strict";
|
|
32383
32383
|
defaultManifest = {
|
|
32384
32384
|
name: true ? "pnpm" : "pnpm",
|
|
32385
|
-
version: true ? "11.
|
|
32385
|
+
version: true ? "11.6.0" : "0.0.0"
|
|
32386
32386
|
};
|
|
32387
32387
|
pkgJson = defaultManifest;
|
|
32388
32388
|
packageManager = {
|
|
@@ -66141,9 +66141,80 @@ var init_checkPlatform = __esm({
|
|
|
66141
66141
|
}
|
|
66142
66142
|
});
|
|
66143
66143
|
|
|
66144
|
+
// ../config/package-is-installable/lib/inferPlatformFromPackageName.js
|
|
66145
|
+
function inferPlatformFromPackageName(name) {
|
|
66146
|
+
const nameWithoutScope = name.includes("/") ? name.slice(name.indexOf("/") + 1) : name;
|
|
66147
|
+
const tokens = nameWithoutScope.toLowerCase().split(/[-_.]/);
|
|
66148
|
+
const os15 = pickTokenValues(tokens, OS_BY_TOKEN);
|
|
66149
|
+
const cpu = pickTokenValues(tokens, CPU_BY_TOKEN);
|
|
66150
|
+
const libc = pickTokenValues(tokens, LIBC_BY_TOKEN);
|
|
66151
|
+
if (os15 == null && cpu == null && libc == null)
|
|
66152
|
+
return null;
|
|
66153
|
+
return {
|
|
66154
|
+
...os15 != null ? { os: os15 } : {},
|
|
66155
|
+
...cpu != null ? { cpu } : {},
|
|
66156
|
+
...libc != null ? { libc } : {}
|
|
66157
|
+
};
|
|
66158
|
+
}
|
|
66159
|
+
function pickTokenValues(tokens, valueByToken) {
|
|
66160
|
+
const values = /* @__PURE__ */ new Set();
|
|
66161
|
+
for (const token of tokens) {
|
|
66162
|
+
const value = valueByToken.get(token);
|
|
66163
|
+
if (value != null) {
|
|
66164
|
+
values.add(value);
|
|
66165
|
+
}
|
|
66166
|
+
}
|
|
66167
|
+
return values.size > 0 ? Array.from(values) : void 0;
|
|
66168
|
+
}
|
|
66169
|
+
var OS_BY_TOKEN, CPU_BY_TOKEN, LIBC_BY_TOKEN;
|
|
66170
|
+
var init_inferPlatformFromPackageName = __esm({
|
|
66171
|
+
"../config/package-is-installable/lib/inferPlatformFromPackageName.js"() {
|
|
66172
|
+
"use strict";
|
|
66173
|
+
OS_BY_TOKEN = /* @__PURE__ */ new Map([
|
|
66174
|
+
["aix", "aix"],
|
|
66175
|
+
["android", "android"],
|
|
66176
|
+
["darwin", "darwin"],
|
|
66177
|
+
["macos", "darwin"],
|
|
66178
|
+
["osx", "darwin"],
|
|
66179
|
+
["freebsd", "freebsd"],
|
|
66180
|
+
["linux", "linux"],
|
|
66181
|
+
["netbsd", "netbsd"],
|
|
66182
|
+
["openbsd", "openbsd"],
|
|
66183
|
+
["openharmony", "openharmony"],
|
|
66184
|
+
["sunos", "sunos"],
|
|
66185
|
+
["win32", "win32"],
|
|
66186
|
+
["windows", "win32"]
|
|
66187
|
+
]);
|
|
66188
|
+
CPU_BY_TOKEN = /* @__PURE__ */ new Map([
|
|
66189
|
+
["arm", "arm"],
|
|
66190
|
+
["armv6", "arm"],
|
|
66191
|
+
["armv7", "arm"],
|
|
66192
|
+
["arm64", "arm64"],
|
|
66193
|
+
["aarch64", "arm64"],
|
|
66194
|
+
["ia32", "ia32"],
|
|
66195
|
+
["loong64", "loong64"],
|
|
66196
|
+
["mips64el", "mips64el"],
|
|
66197
|
+
["ppc64", "ppc64"],
|
|
66198
|
+
["ppc64le", "ppc64"],
|
|
66199
|
+
["riscv64", "riscv64"],
|
|
66200
|
+
["s390x", "s390x"],
|
|
66201
|
+
["x64", "x64"],
|
|
66202
|
+
["amd64", "x64"],
|
|
66203
|
+
["wasm32", "wasm32"]
|
|
66204
|
+
]);
|
|
66205
|
+
LIBC_BY_TOKEN = /* @__PURE__ */ new Map([
|
|
66206
|
+
["glibc", "glibc"],
|
|
66207
|
+
["gnu", "glibc"],
|
|
66208
|
+
["gnueabihf", "glibc"],
|
|
66209
|
+
["musl", "musl"],
|
|
66210
|
+
["musleabihf", "musl"]
|
|
66211
|
+
]);
|
|
66212
|
+
}
|
|
66213
|
+
});
|
|
66214
|
+
|
|
66144
66215
|
// ../config/package-is-installable/lib/index.js
|
|
66145
66216
|
function packageIsInstallable(pkgId, pkg, options) {
|
|
66146
|
-
const warn = checkPackage(pkgId, pkg, options);
|
|
66217
|
+
const warn = checkPackage(pkgId, { engines: pkg.engines, ...effectivePlatform(pkg, options.optional) }, options);
|
|
66147
66218
|
if (warn == null)
|
|
66148
66219
|
return true;
|
|
66149
66220
|
installCheckLogger.warn({
|
|
@@ -66167,6 +66238,21 @@ function packageIsInstallable(pkgId, pkg, options) {
|
|
|
66167
66238
|
throw warn;
|
|
66168
66239
|
return null;
|
|
66169
66240
|
}
|
|
66241
|
+
function effectivePlatform(pkg, optional) {
|
|
66242
|
+
if (!optional || pkg.os != null && pkg.cpu != null && pkg.libc != null)
|
|
66243
|
+
return pkg;
|
|
66244
|
+
const inferred = inferPlatformFromPackageName(pkg.name);
|
|
66245
|
+
if (inferred == null)
|
|
66246
|
+
return pkg;
|
|
66247
|
+
const pkgDeclaresPlatform = pkg.os != null || pkg.cpu != null || pkg.libc != null;
|
|
66248
|
+
if (!pkgDeclaresPlatform && inferred.os == null)
|
|
66249
|
+
return pkg;
|
|
66250
|
+
return {
|
|
66251
|
+
os: pkg.os ?? inferred.os,
|
|
66252
|
+
cpu: pkg.cpu ?? inferred.cpu,
|
|
66253
|
+
libc: pkg.libc ?? inferred.libc
|
|
66254
|
+
};
|
|
66255
|
+
}
|
|
66170
66256
|
function checkPackage(pkgId, manifest, options) {
|
|
66171
66257
|
return checkPlatform(pkgId, {
|
|
66172
66258
|
cpu: manifest.cpu ?? ["any"],
|
|
@@ -66184,6 +66270,8 @@ var init_lib29 = __esm({
|
|
|
66184
66270
|
init_lib9();
|
|
66185
66271
|
init_checkEngine();
|
|
66186
66272
|
init_checkPlatform();
|
|
66273
|
+
init_inferPlatformFromPackageName();
|
|
66274
|
+
init_inferPlatformFromPackageName();
|
|
66187
66275
|
}
|
|
66188
66276
|
});
|
|
66189
66277
|
|
|
@@ -145516,6 +145604,7 @@ function loadNpmrcConfig(opts2) {
|
|
|
145516
145604
|
const userConfig = readAndFilterNpmrc(userConfigPath, warnings, env3);
|
|
145517
145605
|
const pnpmAuthConfig = readAndFilterNpmrc(path58.join(opts2.configDir, "auth.ini"), warnings, env3);
|
|
145518
145606
|
const cliOptions = rescopeUnscopedCreds({ ...opts2.cliOptions }, "<command line>", warnings);
|
|
145607
|
+
const envScopedConfig = readUrlScopedEnvConfig(env3);
|
|
145519
145608
|
const pnpmBuiltinConfig = {
|
|
145520
145609
|
...readAndFilterNpmrc(path58.resolve(path58.join(opts2.moduleDirname, "pnpmrc")), warnings, env3),
|
|
145521
145610
|
registry: "https://registry.npmjs.org/",
|
|
@@ -145529,7 +145618,7 @@ function loadNpmrcConfig(opts2) {
|
|
|
145529
145618
|
opts2.defaultOptions
|
|
145530
145619
|
]);
|
|
145531
145620
|
const mergedConfig = {};
|
|
145532
|
-
for (const source of [pnpmBuiltinConfig, opts2.defaultOptions, userConfig, pnpmAuthConfig, workspaceNpmrc, cliOptions]) {
|
|
145621
|
+
for (const source of [pnpmBuiltinConfig, opts2.defaultOptions, userConfig, pnpmAuthConfig, workspaceNpmrc, envScopedConfig, cliOptions]) {
|
|
145533
145622
|
for (const [key, value] of Object.entries(source)) {
|
|
145534
145623
|
if (isNpmrcReadableKey(key)) {
|
|
145535
145624
|
mergedConfig[key] = value;
|
|
@@ -145537,7 +145626,7 @@ function loadNpmrcConfig(opts2) {
|
|
|
145537
145626
|
}
|
|
145538
145627
|
}
|
|
145539
145628
|
const trustedConfig = {};
|
|
145540
|
-
for (const source of [pnpmBuiltinConfig, opts2.defaultOptions, userConfig, pnpmAuthConfig, cliOptions]) {
|
|
145629
|
+
for (const source of [pnpmBuiltinConfig, opts2.defaultOptions, userConfig, pnpmAuthConfig, envScopedConfig, cliOptions]) {
|
|
145541
145630
|
for (const [key, value] of Object.entries(source)) {
|
|
145542
145631
|
if (isNpmrcReadableKey(key)) {
|
|
145543
145632
|
trustedConfig[key] = value;
|
|
@@ -145550,6 +145639,7 @@ function loadNpmrcConfig(opts2) {
|
|
|
145550
145639
|
...userConfig,
|
|
145551
145640
|
...pnpmAuthConfig,
|
|
145552
145641
|
...workspaceNpmrc,
|
|
145642
|
+
...envScopedConfig,
|
|
145553
145643
|
...cliOptions
|
|
145554
145644
|
};
|
|
145555
145645
|
return {
|
|
@@ -145562,6 +145652,24 @@ function loadNpmrcConfig(opts2) {
|
|
|
145562
145652
|
warnings
|
|
145563
145653
|
};
|
|
145564
145654
|
}
|
|
145655
|
+
function readUrlScopedEnvConfig(env3) {
|
|
145656
|
+
const npmScoped = {};
|
|
145657
|
+
const pnpmScoped = {};
|
|
145658
|
+
for (const envKey of Object.keys(env3)) {
|
|
145659
|
+
const value = env3[envKey];
|
|
145660
|
+
if (value == null || value === "")
|
|
145661
|
+
continue;
|
|
145662
|
+
const match = URL_SCOPED_ENV_RE.exec(envKey);
|
|
145663
|
+
if (match == null)
|
|
145664
|
+
continue;
|
|
145665
|
+
const key = match[1];
|
|
145666
|
+
if (key.endsWith(":tokenHelper"))
|
|
145667
|
+
continue;
|
|
145668
|
+
const target2 = envKey.slice(0, 5).toLowerCase() === "pnpm_" ? pnpmScoped : npmScoped;
|
|
145669
|
+
target2[key] = value;
|
|
145670
|
+
}
|
|
145671
|
+
return { ...npmScoped, ...pnpmScoped };
|
|
145672
|
+
}
|
|
145565
145673
|
function readAndFilterNpmrc(filePath, warnings, env3, opts2 = {}) {
|
|
145566
145674
|
let raw;
|
|
145567
145675
|
try {
|
|
@@ -145631,11 +145739,14 @@ function isAuthValueKey(key) {
|
|
|
145631
145739
|
function hasEnvPlaceholder2(value) {
|
|
145632
145740
|
return /\$\{[^}]+\}/.test(value);
|
|
145633
145741
|
}
|
|
145742
|
+
function configSetExample(key) {
|
|
145743
|
+
return SHELL_SAFE_KEY.test(key) ? ` (for example, run: pnpm config set "${key}" <value>)` : "";
|
|
145744
|
+
}
|
|
145634
145745
|
function warnIgnoredRequestDestinationEnv(filePath, key, warnings) {
|
|
145635
|
-
warnings.push(`Ignored project-level request destination "${key}" in "${filePath}": environment variables are not expanded in repository-
|
|
145746
|
+
warnings.push(`Ignored project-level request destination "${key}" in "${filePath}": environment variables are not expanded in registry or proxy URLs that come from a project .npmrc, because that file is committed to the repository and a malicious value could redirect requests or leak secrets. Move this setting to a trusted source that pnpm still expands \u2014 put it in your user-level ~/.npmrc, or set it with pnpm config set${configSetExample(key)}. If the value is not secret, you can also write it literally in the project .npmrc. See ${DOCS_URL}`);
|
|
145636
145747
|
}
|
|
145637
145748
|
function warnIgnoredAuthValueEnv(filePath, key, warnings) {
|
|
145638
|
-
warnings.push(`Ignored project-level auth setting "${key}" in "${filePath}": environment variables are not expanded in repository-controlled registry
|
|
145749
|
+
warnings.push(`Ignored project-level auth setting "${key}" in "${filePath}": environment variables are not expanded in registry credentials that come from a project .npmrc, because that file is committed to the repository and could leak the secret to an attacker-controlled registry. Move this credential to a trusted source that pnpm still expands \u2014 put the line in your user-level ~/.npmrc, or set it with pnpm config set${configSetExample(key)}. See ${DOCS_URL}`);
|
|
145639
145750
|
}
|
|
145640
145751
|
function rescopeUnscopedCreds(source, sourceLabel, warnings) {
|
|
145641
145752
|
if (!UNSCOPED_RESCOPABLE_KEYS.some((key) => key in source)) {
|
|
@@ -145749,7 +145860,7 @@ function loadCAFile(layers) {
|
|
|
145749
145860
|
} catch {
|
|
145750
145861
|
}
|
|
145751
145862
|
}
|
|
145752
|
-
var import_config10, import_config11, import_normalize_registry_url2, UNSCOPED_RESCOPABLE_KEYS, AUTH_VALUE_KEYS, AUTH_VALUE_KEY_SUFFIXES;
|
|
145863
|
+
var import_config10, import_config11, import_normalize_registry_url2, URL_SCOPED_ENV_RE, UNSCOPED_RESCOPABLE_KEYS, AUTH_VALUE_KEYS, AUTH_VALUE_KEY_SUFFIXES, DOCS_URL, SHELL_SAFE_KEY;
|
|
145753
145864
|
var init_loadNpmrcFiles = __esm({
|
|
145754
145865
|
"../config/reader/lib/loadNpmrcFiles.js"() {
|
|
145755
145866
|
"use strict";
|
|
@@ -145759,6 +145870,7 @@ var init_loadNpmrcFiles = __esm({
|
|
|
145759
145870
|
init_read_ini_file();
|
|
145760
145871
|
init_localConfig();
|
|
145761
145872
|
init_npmDefaults();
|
|
145873
|
+
URL_SCOPED_ENV_RE = /^p?npm_config_(\/\/.+)$/i;
|
|
145762
145874
|
UNSCOPED_RESCOPABLE_KEYS = [
|
|
145763
145875
|
"_authToken",
|
|
145764
145876
|
"_auth",
|
|
@@ -145770,6 +145882,8 @@ var init_loadNpmrcFiles = __esm({
|
|
|
145770
145882
|
];
|
|
145771
145883
|
AUTH_VALUE_KEYS = ["_authToken", "_auth", "_password", "username", "tokenHelper", "cert", "key"];
|
|
145772
145884
|
AUTH_VALUE_KEY_SUFFIXES = AUTH_VALUE_KEYS.map((key) => `:${key}`);
|
|
145885
|
+
DOCS_URL = "https://pnpm.io/npmrc";
|
|
145886
|
+
SHELL_SAFE_KEY = /^[\w@.:/-]+$/;
|
|
145773
145887
|
}
|
|
145774
145888
|
});
|
|
145775
145889
|
|
|
@@ -157919,7 +158033,7 @@ function getLibcFamilySync2() {
|
|
|
157919
158033
|
}
|
|
157920
158034
|
function createPackageRequester(opts2) {
|
|
157921
158035
|
opts2 = opts2 || {};
|
|
157922
|
-
const networkConcurrency = opts2.networkConcurrency ?? Math.min(
|
|
158036
|
+
const networkConcurrency = opts2.networkConcurrency ?? Math.min(96, Math.max(calcMaxWorkers() * 3, 64));
|
|
157923
158037
|
const requestsQueue = new PQueue({
|
|
157924
158038
|
concurrency: networkConcurrency
|
|
157925
158039
|
});
|
|
@@ -187609,8 +187723,10 @@ function tryLockfileVerificationCache(cacheDir, key) {
|
|
|
187609
187723
|
return { hit: false, precomputed: {} };
|
|
187610
187724
|
const byPathRecord = indexes.byPath.get(key.lockfilePath);
|
|
187611
187725
|
if (byPathRecord && statMatches(stat2, byPathRecord.lockfile)) {
|
|
187726
|
+
const hit = everyVerifierTrustsCachedRun(byPathRecord, key.verifiers);
|
|
187612
187727
|
return {
|
|
187613
|
-
hit
|
|
187728
|
+
hit,
|
|
187729
|
+
verifiedAt: hit ? byPathRecord.verifiedAt || void 0 : void 0,
|
|
187614
187730
|
// The stat-match implies the file content is unchanged since the
|
|
187615
187731
|
// cached record was written, so its hash is still correct. Pass
|
|
187616
187732
|
// it through to skip hashing on the miss-then-record path.
|
|
@@ -187634,7 +187750,7 @@ function tryLockfileVerificationCache(cacheDir, key) {
|
|
|
187634
187750
|
...byHashRecord,
|
|
187635
187751
|
lockfile: { ...byHashRecord.lockfile, path: key.lockfilePath, size: stat2.size, mtimeNs: stat2.mtimeNs, inode: stat2.inode }
|
|
187636
187752
|
});
|
|
187637
|
-
return { hit: true, precomputed: { stat: stat2, hash: hash2 } };
|
|
187753
|
+
return { hit: true, verifiedAt: byHashRecord.verifiedAt || void 0, precomputed: { stat: stat2, hash: hash2 } };
|
|
187638
187754
|
}
|
|
187639
187755
|
function everyVerifierTrustsCachedRun(record, verifiers) {
|
|
187640
187756
|
for (const verifier of verifiers) {
|
|
@@ -187776,8 +187892,16 @@ async function verifyLockfileResolutions(lockfile, verifiers, options) {
|
|
|
187776
187892
|
verifiers: cacheVerifiers,
|
|
187777
187893
|
hashLockfile
|
|
187778
187894
|
});
|
|
187779
|
-
if (result2.hit)
|
|
187895
|
+
if (result2.hit) {
|
|
187896
|
+
if (verifiers.length > 0) {
|
|
187897
|
+
lockfileVerificationLogger.debug({
|
|
187898
|
+
status: "cached",
|
|
187899
|
+
verifiedAt: result2.verifiedAt,
|
|
187900
|
+
lockfilePath: options?.lockfilePath
|
|
187901
|
+
});
|
|
187902
|
+
}
|
|
187780
187903
|
return;
|
|
187904
|
+
}
|
|
187781
187905
|
cachePrecomputed = result2.precomputed;
|
|
187782
187906
|
}
|
|
187783
187907
|
const { candidates, shapeViolations } = collectCandidates(lockfile);
|
|
@@ -187916,7 +188040,7 @@ var init_verifyLockfileResolutions = __esm({
|
|
|
187916
188040
|
init_p_limit();
|
|
187917
188041
|
init_verifyLockfileResolutionsCache();
|
|
187918
188042
|
MAX_VIOLATIONS_TO_PRINT = 20;
|
|
187919
|
-
DEFAULT_CONCURRENCY =
|
|
188043
|
+
DEFAULT_CONCURRENCY = 64;
|
|
187920
188044
|
RESOLUTION_SHAPE_MISMATCH_VIOLATION_CODE = "RESOLUTION_SHAPE_MISMATCH";
|
|
187921
188045
|
RESOLUTION_SHAPE_CACHE_IDENTITY = {
|
|
187922
188046
|
policy: { resolutionShapeCheck: true },
|
|
@@ -193218,9 +193342,11 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193218
193342
|
const modifiedProjects = allManifestStats.filter(({ manifestStats }) => manifestStats.mtime.valueOf() > workspaceState.lastValidatedTimestamp);
|
|
193219
193343
|
if (modifiedProjects.length === 0) {
|
|
193220
193344
|
import_logger77.logger.debug({ msg: "No manifest files were modified since the last validation. Exiting check." });
|
|
193221
|
-
|
|
193345
|
+
const wantedLockfileToRestore2 = sharedWorkspaceLockfile && !opts2.useGitBranchLockfile ? await missingWantedLockfileStandIn(workspaceDir) : void 0;
|
|
193346
|
+
return { upToDate: true, workspaceState, wantedLockfileToRestore: wantedLockfileToRestore2 };
|
|
193222
193347
|
}
|
|
193223
193348
|
import_logger77.logger.debug({ msg: "Some manifest files were modified since the last validation. Continuing check." });
|
|
193349
|
+
let wantedLockfileToRestore;
|
|
193224
193350
|
let readWantedLockfileAndDir;
|
|
193225
193351
|
if (sharedWorkspaceLockfile) {
|
|
193226
193352
|
let wantedLockfileStats;
|
|
@@ -193228,21 +193354,34 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193228
193354
|
wantedLockfileStats = fs81.statSync(path148.join(workspaceDir, WANTED_LOCKFILE));
|
|
193229
193355
|
} catch (error) {
|
|
193230
193356
|
if (util41.types.isNativeError(error) && "code" in error && error.code === "ENOENT") {
|
|
193231
|
-
|
|
193357
|
+
wantedLockfileStats = void 0;
|
|
193232
193358
|
} else {
|
|
193233
193359
|
throw error;
|
|
193234
193360
|
}
|
|
193235
193361
|
}
|
|
193236
|
-
|
|
193237
|
-
|
|
193362
|
+
if (wantedLockfileStats == null) {
|
|
193363
|
+
if (opts2.useGitBranchLockfile)
|
|
193364
|
+
return throwLockfileNotFound(workspaceDir);
|
|
193238
193365
|
const currentLockfile = await readCurrentLockfile(path148.join(workspaceDir, "node_modules/.pnpm"), { ignoreIncompatible: false });
|
|
193239
|
-
|
|
193240
|
-
|
|
193366
|
+
if (currentLockfile == null)
|
|
193367
|
+
return throwLockfileNotFound(workspaceDir);
|
|
193368
|
+
wantedLockfileToRestore = { lockfile: currentLockfile, lockfileDir: workspaceDir };
|
|
193369
|
+
readWantedLockfileAndDir = async () => ({
|
|
193370
|
+
wantedLockfile: currentLockfile,
|
|
193371
|
+
wantedLockfileDir: workspaceDir
|
|
193372
|
+
});
|
|
193373
|
+
} else {
|
|
193374
|
+
const wantedLockfilePromise = readWantedLockfile(workspaceDir, { ignoreIncompatible: false });
|
|
193375
|
+
if (wantedLockfileStats.mtime.valueOf() > workspaceState.lastValidatedTimestamp) {
|
|
193376
|
+
const currentLockfile = await readCurrentLockfile(path148.join(workspaceDir, "node_modules/.pnpm"), { ignoreIncompatible: false });
|
|
193377
|
+
const wantedLockfile = await wantedLockfilePromise ?? throwLockfileNotFound(workspaceDir);
|
|
193378
|
+
assertLockfilesEqual(currentLockfile, wantedLockfile, workspaceDir);
|
|
193379
|
+
}
|
|
193380
|
+
readWantedLockfileAndDir = async () => ({
|
|
193381
|
+
wantedLockfile: await wantedLockfilePromise ?? throwLockfileNotFound(workspaceDir),
|
|
193382
|
+
wantedLockfileDir: workspaceDir
|
|
193383
|
+
});
|
|
193241
193384
|
}
|
|
193242
|
-
readWantedLockfileAndDir = async () => ({
|
|
193243
|
-
wantedLockfile: await wantedLockfilePromise ?? throwLockfileNotFound(workspaceDir),
|
|
193244
|
-
wantedLockfileDir: workspaceDir
|
|
193245
|
-
});
|
|
193246
193385
|
} else {
|
|
193247
193386
|
readWantedLockfileAndDir = async (wantedLockfileDir) => {
|
|
193248
193387
|
const wantedLockfilePromise = readWantedLockfile(wantedLockfileDir, { ignoreIncompatible: false });
|
|
@@ -193298,7 +193437,7 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193298
193437
|
settings: opts2,
|
|
193299
193438
|
filteredInstall: workspaceState.filteredInstall
|
|
193300
193439
|
});
|
|
193301
|
-
return { upToDate: true, workspaceState };
|
|
193440
|
+
return { upToDate: true, workspaceState, wantedLockfileToRestore };
|
|
193302
193441
|
}
|
|
193303
193442
|
if (!allProjects) {
|
|
193304
193443
|
const workspaceRoot = workspaceDir ?? rootProjectManifestDir;
|
|
@@ -193324,19 +193463,25 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193324
193463
|
safeStat(path148.join(rootProjectManifestDir, WANTED_LOCKFILE)),
|
|
193325
193464
|
statManifestFile(rootProjectManifestDir)
|
|
193326
193465
|
]);
|
|
193327
|
-
if (!wantedLockfileStats)
|
|
193466
|
+
if (!wantedLockfileStats && (!currentLockfileStats || opts2.useGitBranchLockfile))
|
|
193328
193467
|
return throwLockfileNotFound(rootProjectManifestDir);
|
|
193468
|
+
const wantedLockfileIsMissing = !wantedLockfileStats;
|
|
193469
|
+
const effectiveWantedLockfileStats = wantedLockfileStats ?? currentLockfileStats;
|
|
193470
|
+
const readEffectiveWantedLockfile = async () => {
|
|
193471
|
+
const lockfile = wantedLockfileIsMissing ? await currentLockfilePromise : await wantedLockfilePromise;
|
|
193472
|
+
return lockfile ?? throwLockfileNotFound(rootProjectManifestDir);
|
|
193473
|
+
};
|
|
193329
193474
|
const issue = await patchesOrHooksAreModified({
|
|
193330
193475
|
patchedDependencies,
|
|
193331
193476
|
rootDir: rootProjectManifestDir,
|
|
193332
|
-
lastValidatedTimestamp:
|
|
193477
|
+
lastValidatedTimestamp: effectiveWantedLockfileStats.mtime.valueOf(),
|
|
193333
193478
|
currentPnpmfiles: opts2.pnpmfile,
|
|
193334
193479
|
previousPnpmfiles: workspaceState.pnpmfiles
|
|
193335
193480
|
});
|
|
193336
193481
|
if (issue) {
|
|
193337
193482
|
return { upToDate: false, issue, workspaceState };
|
|
193338
193483
|
}
|
|
193339
|
-
if (currentLockfileStats && wantedLockfileStats.mtime.valueOf() > currentLockfileStats.mtime.valueOf()) {
|
|
193484
|
+
if (!wantedLockfileIsMissing && currentLockfileStats && wantedLockfileStats.mtime.valueOf() > currentLockfileStats.mtime.valueOf()) {
|
|
193340
193485
|
const currentLockfile = await currentLockfilePromise;
|
|
193341
193486
|
const wantedLockfile = await wantedLockfilePromise ?? throwLockfileNotFound(rootProjectManifestDir);
|
|
193342
193487
|
assertLockfilesEqual(currentLockfile, wantedLockfile, rootProjectManifestDir);
|
|
@@ -193344,7 +193489,7 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193344
193489
|
if (!manifestStats) {
|
|
193345
193490
|
throw new Error(`Cannot find one of ${MANIFEST_BASE_NAMES.join(", ")} in ${rootProjectManifestDir}`);
|
|
193346
193491
|
}
|
|
193347
|
-
if (manifestStats.mtime.valueOf() >
|
|
193492
|
+
if (manifestStats.mtime.valueOf() > effectiveWantedLockfileStats.mtime.valueOf()) {
|
|
193348
193493
|
import_logger77.logger.debug({ msg: "The manifest is newer than the lockfile. Continuing check." });
|
|
193349
193494
|
try {
|
|
193350
193495
|
await assertWantedLockfileUpToDate({
|
|
@@ -193360,7 +193505,7 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193360
193505
|
projectDir: rootProjectManifestDir,
|
|
193361
193506
|
projectId: ".",
|
|
193362
193507
|
projectManifest: rootProjectManifest,
|
|
193363
|
-
wantedLockfile: await
|
|
193508
|
+
wantedLockfile: await readEffectiveWantedLockfile(),
|
|
193364
193509
|
wantedLockfileDir: rootProjectManifestDir
|
|
193365
193510
|
});
|
|
193366
193511
|
} catch (err2) {
|
|
@@ -193380,6 +193525,16 @@ async function _checkDepsStatus(opts2, workspaceState) {
|
|
|
193380
193525
|
});
|
|
193381
193526
|
}
|
|
193382
193527
|
}
|
|
193528
|
+
if (wantedLockfileIsMissing) {
|
|
193529
|
+
const currentLockfile = await currentLockfilePromise;
|
|
193530
|
+
if (currentLockfile != null) {
|
|
193531
|
+
return {
|
|
193532
|
+
upToDate: true,
|
|
193533
|
+
workspaceState,
|
|
193534
|
+
wantedLockfileToRestore: { lockfile: currentLockfile, lockfileDir: rootProjectManifestDir }
|
|
193535
|
+
};
|
|
193536
|
+
}
|
|
193537
|
+
}
|
|
193383
193538
|
return { upToDate: true, workspaceState };
|
|
193384
193539
|
}
|
|
193385
193540
|
(0, import_logger77.globalWarn)("Skipping check.");
|
|
@@ -193438,6 +193593,14 @@ function throwLockfileNotFound(wantedLockfileDir) {
|
|
|
193438
193593
|
hint: "Run `pnpm install` to create the lockfile"
|
|
193439
193594
|
});
|
|
193440
193595
|
}
|
|
193596
|
+
async function missingWantedLockfileStandIn(lockfileDir) {
|
|
193597
|
+
if (safeStatSync(path148.join(lockfileDir, WANTED_LOCKFILE)) != null)
|
|
193598
|
+
return void 0;
|
|
193599
|
+
const currentLockfile = await readCurrentLockfile(path148.join(lockfileDir, "node_modules/.pnpm"), { ignoreIncompatible: false });
|
|
193600
|
+
if (currentLockfile == null)
|
|
193601
|
+
return void 0;
|
|
193602
|
+
return { lockfile: currentLockfile, lockfileDir };
|
|
193603
|
+
}
|
|
193441
193604
|
function getWantedLockfileDirs(opts2) {
|
|
193442
193605
|
if (opts2.allProjects && opts2.workspaceDir && opts2.sharedWorkspaceLockfile === false) {
|
|
193443
193606
|
return [...new Set(opts2.allProjects.map(({ rootDir }) => rootDir))];
|
|
@@ -194936,11 +195099,11 @@ var init_verifyPacquetIdentity = __esm({
|
|
|
194936
195099
|
import path152 from "node:path";
|
|
194937
195100
|
async function installDeps(opts2, params) {
|
|
194938
195101
|
if (!opts2.update && !opts2.dedupe && params.length === 0 && opts2.optimisticRepeatInstall) {
|
|
194939
|
-
const { upToDate } = await checkDepsStatus({
|
|
195102
|
+
const { upToDate, wantedLockfileToRestore } = await checkDepsStatus({
|
|
194940
195103
|
...opts2,
|
|
194941
195104
|
ignoreFilteredInstallCache: true
|
|
194942
195105
|
});
|
|
194943
|
-
if (upToDate) {
|
|
195106
|
+
if (upToDate && await restoreWantedLockfileIfMissing(wantedLockfileToRestore, opts2)) {
|
|
194944
195107
|
if (opts2.hooks?.customResolvers?.some((r) => r.shouldRefreshResolution)) {
|
|
194945
195108
|
logger.warn({
|
|
194946
195109
|
message: "shouldRefreshResolution hooks were skipped because optimisticRepeatInstall is enabled.",
|
|
@@ -195276,6 +195439,17 @@ function preferNonvulnerablePackageVersions(packageVulnerabilityAudit) {
|
|
|
195276
195439
|
}
|
|
195277
195440
|
return preferredVersions;
|
|
195278
195441
|
}
|
|
195442
|
+
async function restoreWantedLockfileIfMissing(wantedLockfileToRestore, opts2) {
|
|
195443
|
+
if (wantedLockfileToRestore == null || opts2.useLockfile === false)
|
|
195444
|
+
return true;
|
|
195445
|
+
try {
|
|
195446
|
+
await writeWantedLockfile(wantedLockfileToRestore.lockfileDir, wantedLockfileToRestore.lockfile);
|
|
195447
|
+
return true;
|
|
195448
|
+
} catch (error) {
|
|
195449
|
+
logger.debug({ msg: "Failed to restore pnpm-lock.yaml from the current lockfile", error });
|
|
195450
|
+
return false;
|
|
195451
|
+
}
|
|
195452
|
+
}
|
|
195279
195453
|
var OVERWRITE_UPDATE_OPTIONS;
|
|
195280
195454
|
var init_installDeps = __esm({
|
|
195281
195455
|
"../installing/commands/lib/installDeps.js"() {
|
|
@@ -195286,6 +195460,7 @@ var init_installDeps = __esm({
|
|
|
195286
195460
|
init_lib2();
|
|
195287
195461
|
init_lib88();
|
|
195288
195462
|
init_lib125();
|
|
195463
|
+
init_lib79();
|
|
195289
195464
|
init_lib3();
|
|
195290
195465
|
init_lib12();
|
|
195291
195466
|
init_lib91();
|
|
@@ -215605,7 +215780,7 @@ async function readYarnLockFile(dir) {
|
|
|
215605
215780
|
const yarnLockFile = await lib_default.readFile(path153.join(dir, "yarn.lock"), "utf8");
|
|
215606
215781
|
const yarnLockFileType = getYarnLockfileType(yarnLockFile);
|
|
215607
215782
|
if (yarnLockFileType === YarnLockType.yarn) {
|
|
215608
|
-
const lockJsonFile = (0,
|
|
215783
|
+
const lockJsonFile = (0, import_lockfile66.parse)(yarnLockFile);
|
|
215609
215784
|
if (lockJsonFile.type === "success") {
|
|
215610
215785
|
return lockJsonFile.object;
|
|
215611
215786
|
} else {
|
|
@@ -215722,7 +215897,7 @@ function selectProjectByDir2(projects, searchedDir) {
|
|
|
215722
215897
|
function getYarnLockfileType(lockFileContents) {
|
|
215723
215898
|
return lockFileContents.includes("__metadata") ? YarnLockType.yarn2 : YarnLockType.yarn;
|
|
215724
215899
|
}
|
|
215725
|
-
var structUtils,
|
|
215900
|
+
var structUtils, import_lockfile66, import_parsers, YarnLockType, rcOptionsTypes8, commandNames8, recursiveByDefault3;
|
|
215726
215901
|
var init_import = __esm({
|
|
215727
215902
|
"../installing/commands/lib/import/index.js"() {
|
|
215728
215903
|
"use strict";
|
|
@@ -215737,7 +215912,7 @@ var init_import = __esm({
|
|
|
215737
215912
|
init_lib31();
|
|
215738
215913
|
init_lib94();
|
|
215739
215914
|
structUtils = __toESM(require_structUtils(), 1);
|
|
215740
|
-
|
|
215915
|
+
import_lockfile66 = __toESM(require_lockfile(), 1);
|
|
215741
215916
|
import_parsers = __toESM(require_lib13(), 1);
|
|
215742
215917
|
init_rimraf();
|
|
215743
215918
|
init_load_json_file();
|
|
@@ -239485,9 +239660,9 @@ var require_call_bound = __commonJS({
|
|
|
239485
239660
|
}
|
|
239486
239661
|
});
|
|
239487
239662
|
|
|
239488
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239663
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/IsArray.js
|
|
239489
239664
|
var require_IsArray = __commonJS({
|
|
239490
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239665
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/IsArray.js"(exports2, module2) {
|
|
239491
239666
|
"use strict";
|
|
239492
239667
|
var GetIntrinsic = require_get_intrinsic();
|
|
239493
239668
|
var $Array = GetIntrinsic("%Array%");
|
|
@@ -239498,17 +239673,17 @@ var require_IsArray = __commonJS({
|
|
|
239498
239673
|
}
|
|
239499
239674
|
});
|
|
239500
239675
|
|
|
239501
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239676
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsArray.js
|
|
239502
239677
|
var require_IsArray2 = __commonJS({
|
|
239503
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239678
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsArray.js"(exports2, module2) {
|
|
239504
239679
|
"use strict";
|
|
239505
239680
|
module2.exports = require_IsArray();
|
|
239506
239681
|
}
|
|
239507
239682
|
});
|
|
239508
239683
|
|
|
239509
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239684
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Call.js
|
|
239510
239685
|
var require_Call = __commonJS({
|
|
239511
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
239686
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Call.js"(exports2, module2) {
|
|
239512
239687
|
"use strict";
|
|
239513
239688
|
var GetIntrinsic = require_get_intrinsic();
|
|
239514
239689
|
var callBound = require_call_bound();
|
|
@@ -240063,9 +240238,9 @@ var require_object_inspect = __commonJS({
|
|
|
240063
240238
|
}
|
|
240064
240239
|
});
|
|
240065
240240
|
|
|
240066
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240241
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isPropertyKey.js
|
|
240067
240242
|
var require_isPropertyKey = __commonJS({
|
|
240068
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240243
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isPropertyKey.js"(exports2, module2) {
|
|
240069
240244
|
"use strict";
|
|
240070
240245
|
module2.exports = function isPropertyKey(argument) {
|
|
240071
240246
|
return typeof argument === "string" || typeof argument === "symbol";
|
|
@@ -240083,9 +240258,9 @@ var require_isObject2 = __commonJS({
|
|
|
240083
240258
|
}
|
|
240084
240259
|
});
|
|
240085
240260
|
|
|
240086
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240261
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Get.js
|
|
240087
240262
|
var require_Get = __commonJS({
|
|
240088
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240263
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Get.js"(exports2, module2) {
|
|
240089
240264
|
"use strict";
|
|
240090
240265
|
var $TypeError = require_type3();
|
|
240091
240266
|
var inspect3 = require_object_inspect();
|
|
@@ -240103,9 +240278,9 @@ var require_Get = __commonJS({
|
|
|
240103
240278
|
}
|
|
240104
240279
|
});
|
|
240105
240280
|
|
|
240106
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240281
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/GetV.js
|
|
240107
240282
|
var require_GetV = __commonJS({
|
|
240108
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240283
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/GetV.js"(exports2, module2) {
|
|
240109
240284
|
"use strict";
|
|
240110
240285
|
var $TypeError = require_type3();
|
|
240111
240286
|
var inspect3 = require_object_inspect();
|
|
@@ -240237,17 +240412,17 @@ var require_is_callable = __commonJS({
|
|
|
240237
240412
|
}
|
|
240238
240413
|
});
|
|
240239
240414
|
|
|
240240
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240415
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsCallable.js
|
|
240241
240416
|
var require_IsCallable = __commonJS({
|
|
240242
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240417
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsCallable.js"(exports2, module2) {
|
|
240243
240418
|
"use strict";
|
|
240244
240419
|
module2.exports = require_is_callable();
|
|
240245
240420
|
}
|
|
240246
240421
|
});
|
|
240247
240422
|
|
|
240248
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240423
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/GetMethod.js
|
|
240249
240424
|
var require_GetMethod = __commonJS({
|
|
240250
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240425
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/GetMethod.js"(exports2, module2) {
|
|
240251
240426
|
"use strict";
|
|
240252
240427
|
var $TypeError = require_type3();
|
|
240253
240428
|
var GetV = require_GetV();
|
|
@@ -240350,9 +240525,9 @@ var require_is_regex = __commonJS({
|
|
|
240350
240525
|
}
|
|
240351
240526
|
});
|
|
240352
240527
|
|
|
240353
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240528
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToBoolean.js
|
|
240354
240529
|
var require_ToBoolean = __commonJS({
|
|
240355
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240530
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToBoolean.js"(exports2, module2) {
|
|
240356
240531
|
"use strict";
|
|
240357
240532
|
module2.exports = function ToBoolean(value) {
|
|
240358
240533
|
return !!value;
|
|
@@ -240360,9 +240535,9 @@ var require_ToBoolean = __commonJS({
|
|
|
240360
240535
|
}
|
|
240361
240536
|
});
|
|
240362
240537
|
|
|
240363
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240538
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsRegExp.js
|
|
240364
240539
|
var require_IsRegExp = __commonJS({
|
|
240365
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240540
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsRegExp.js"(exports2, module2) {
|
|
240366
240541
|
"use strict";
|
|
240367
240542
|
var GetIntrinsic = require_get_intrinsic();
|
|
240368
240543
|
var $match = GetIntrinsic("%Symbol.match%", true);
|
|
@@ -240384,9 +240559,9 @@ var require_IsRegExp = __commonJS({
|
|
|
240384
240559
|
}
|
|
240385
240560
|
});
|
|
240386
240561
|
|
|
240387
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240562
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToString.js
|
|
240388
240563
|
var require_ToString = __commonJS({
|
|
240389
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240564
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToString.js"(exports2, module2) {
|
|
240390
240565
|
"use strict";
|
|
240391
240566
|
var GetIntrinsic = require_get_intrinsic();
|
|
240392
240567
|
var $String = GetIntrinsic("%String%");
|
|
@@ -240608,9 +240783,9 @@ var require_regexp_prototype = __commonJS({
|
|
|
240608
240783
|
}
|
|
240609
240784
|
});
|
|
240610
240785
|
|
|
240611
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240786
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isLeadingSurrogate.js
|
|
240612
240787
|
var require_isLeadingSurrogate = __commonJS({
|
|
240613
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240788
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isLeadingSurrogate.js"(exports2, module2) {
|
|
240614
240789
|
"use strict";
|
|
240615
240790
|
module2.exports = function isLeadingSurrogate(charCode) {
|
|
240616
240791
|
return typeof charCode === "number" && charCode >= 55296 && charCode <= 56319;
|
|
@@ -240618,9 +240793,9 @@ var require_isLeadingSurrogate = __commonJS({
|
|
|
240618
240793
|
}
|
|
240619
240794
|
});
|
|
240620
240795
|
|
|
240621
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240796
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isTrailingSurrogate.js
|
|
240622
240797
|
var require_isTrailingSurrogate = __commonJS({
|
|
240623
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240798
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isTrailingSurrogate.js"(exports2, module2) {
|
|
240624
240799
|
"use strict";
|
|
240625
240800
|
module2.exports = function isTrailingSurrogate(charCode) {
|
|
240626
240801
|
return typeof charCode === "number" && charCode >= 56320 && charCode <= 57343;
|
|
@@ -240628,9 +240803,9 @@ var require_isTrailingSurrogate = __commonJS({
|
|
|
240628
240803
|
}
|
|
240629
240804
|
});
|
|
240630
240805
|
|
|
240631
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240806
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js
|
|
240632
240807
|
var require_UTF16SurrogatePairToCodePoint = __commonJS({
|
|
240633
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240808
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js"(exports2, module2) {
|
|
240634
240809
|
"use strict";
|
|
240635
240810
|
var GetIntrinsic = require_get_intrinsic();
|
|
240636
240811
|
var $TypeError = require_type3();
|
|
@@ -240646,9 +240821,9 @@ var require_UTF16SurrogatePairToCodePoint = __commonJS({
|
|
|
240646
240821
|
}
|
|
240647
240822
|
});
|
|
240648
240823
|
|
|
240649
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240824
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CodePointAt.js
|
|
240650
240825
|
var require_CodePointAt = __commonJS({
|
|
240651
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240826
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CodePointAt.js"(exports2, module2) {
|
|
240652
240827
|
"use strict";
|
|
240653
240828
|
var $TypeError = require_type3();
|
|
240654
240829
|
var callBound = require_call_bound();
|
|
@@ -240738,9 +240913,9 @@ var require_maxSafeInteger = __commonJS({
|
|
|
240738
240913
|
}
|
|
240739
240914
|
});
|
|
240740
240915
|
|
|
240741
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240916
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/AdvanceStringIndex.js
|
|
240742
240917
|
var require_AdvanceStringIndex = __commonJS({
|
|
240743
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240918
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/AdvanceStringIndex.js"(exports2, module2) {
|
|
240744
240919
|
"use strict";
|
|
240745
240920
|
var CodePointAt = require_CodePointAt();
|
|
240746
240921
|
var $TypeError = require_type3();
|
|
@@ -240769,9 +240944,9 @@ var require_AdvanceStringIndex = __commonJS({
|
|
|
240769
240944
|
}
|
|
240770
240945
|
});
|
|
240771
240946
|
|
|
240772
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240947
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CreateIterResultObject.js
|
|
240773
240948
|
var require_CreateIterResultObject = __commonJS({
|
|
240774
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240949
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CreateIterResultObject.js"(exports2, module2) {
|
|
240775
240950
|
"use strict";
|
|
240776
240951
|
var $TypeError = require_type3();
|
|
240777
240952
|
module2.exports = function CreateIterResultObject(value, done) {
|
|
@@ -240786,9 +240961,9 @@ var require_CreateIterResultObject = __commonJS({
|
|
|
240786
240961
|
}
|
|
240787
240962
|
});
|
|
240788
240963
|
|
|
240789
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240964
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/records/property-descriptor.js
|
|
240790
240965
|
var require_property_descriptor = __commonJS({
|
|
240791
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240966
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/records/property-descriptor.js"(exports2, module2) {
|
|
240792
240967
|
"use strict";
|
|
240793
240968
|
var $TypeError = require_type3();
|
|
240794
240969
|
var hasOwn = require_hasown();
|
|
@@ -240820,9 +240995,9 @@ var require_property_descriptor = __commonJS({
|
|
|
240820
240995
|
}
|
|
240821
240996
|
});
|
|
240822
240997
|
|
|
240823
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
240998
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/DefineOwnProperty.js
|
|
240824
240999
|
var require_DefineOwnProperty = __commonJS({
|
|
240825
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241000
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/DefineOwnProperty.js"(exports2, module2) {
|
|
240826
241001
|
"use strict";
|
|
240827
241002
|
var hasPropertyDescriptors = require_has_property_descriptors();
|
|
240828
241003
|
var $defineProperty = require_es_define_property();
|
|
@@ -240855,9 +241030,9 @@ var require_DefineOwnProperty = __commonJS({
|
|
|
240855
241030
|
}
|
|
240856
241031
|
});
|
|
240857
241032
|
|
|
240858
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241033
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/fromPropertyDescriptor.js
|
|
240859
241034
|
var require_fromPropertyDescriptor = __commonJS({
|
|
240860
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241035
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/fromPropertyDescriptor.js"(exports2, module2) {
|
|
240861
241036
|
"use strict";
|
|
240862
241037
|
module2.exports = function fromPropertyDescriptor(Desc) {
|
|
240863
241038
|
if (typeof Desc === "undefined") {
|
|
@@ -240887,9 +241062,9 @@ var require_fromPropertyDescriptor = __commonJS({
|
|
|
240887
241062
|
}
|
|
240888
241063
|
});
|
|
240889
241064
|
|
|
240890
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241065
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/FromPropertyDescriptor.js
|
|
240891
241066
|
var require_FromPropertyDescriptor = __commonJS({
|
|
240892
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241067
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/FromPropertyDescriptor.js"(exports2, module2) {
|
|
240893
241068
|
"use strict";
|
|
240894
241069
|
var $TypeError = require_type3();
|
|
240895
241070
|
var isPropertyDescriptor = require_property_descriptor();
|
|
@@ -240903,9 +241078,9 @@ var require_FromPropertyDescriptor = __commonJS({
|
|
|
240903
241078
|
}
|
|
240904
241079
|
});
|
|
240905
241080
|
|
|
240906
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241081
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsDataDescriptor.js
|
|
240907
241082
|
var require_IsDataDescriptor = __commonJS({
|
|
240908
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241083
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsDataDescriptor.js"(exports2, module2) {
|
|
240909
241084
|
"use strict";
|
|
240910
241085
|
var $TypeError = require_type3();
|
|
240911
241086
|
var hasOwn = require_hasown();
|
|
@@ -240925,9 +241100,9 @@ var require_IsDataDescriptor = __commonJS({
|
|
|
240925
241100
|
}
|
|
240926
241101
|
});
|
|
240927
241102
|
|
|
240928
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241103
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/SameValue.js
|
|
240929
241104
|
var require_SameValue = __commonJS({
|
|
240930
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241105
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/SameValue.js"(exports2, module2) {
|
|
240931
241106
|
"use strict";
|
|
240932
241107
|
var $isNaN = require_isNaN2();
|
|
240933
241108
|
module2.exports = function SameValue(x, y) {
|
|
@@ -240942,9 +241117,9 @@ var require_SameValue = __commonJS({
|
|
|
240942
241117
|
}
|
|
240943
241118
|
});
|
|
240944
241119
|
|
|
240945
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241120
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToPropertyDescriptor.js
|
|
240946
241121
|
var require_ToPropertyDescriptor = __commonJS({
|
|
240947
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241122
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToPropertyDescriptor.js"(exports2, module2) {
|
|
240948
241123
|
"use strict";
|
|
240949
241124
|
var hasOwn = require_hasown();
|
|
240950
241125
|
var $TypeError = require_type3();
|
|
@@ -240990,9 +241165,9 @@ var require_ToPropertyDescriptor = __commonJS({
|
|
|
240990
241165
|
}
|
|
240991
241166
|
});
|
|
240992
241167
|
|
|
240993
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241168
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/DefinePropertyOrThrow.js
|
|
240994
241169
|
var require_DefinePropertyOrThrow = __commonJS({
|
|
240995
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241170
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/DefinePropertyOrThrow.js"(exports2, module2) {
|
|
240996
241171
|
"use strict";
|
|
240997
241172
|
var $TypeError = require_type3();
|
|
240998
241173
|
var isObject4 = require_isObject2();
|
|
@@ -241026,9 +241201,9 @@ var require_DefinePropertyOrThrow = __commonJS({
|
|
|
241026
241201
|
}
|
|
241027
241202
|
});
|
|
241028
241203
|
|
|
241029
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241204
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isPrimitive.js
|
|
241030
241205
|
var require_isPrimitive2 = __commonJS({
|
|
241031
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241206
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/isPrimitive.js"(exports2, module2) {
|
|
241032
241207
|
"use strict";
|
|
241033
241208
|
module2.exports = function isPrimitive2(value) {
|
|
241034
241209
|
return value === null || typeof value !== "function" && typeof value !== "object";
|
|
@@ -241036,9 +241211,9 @@ var require_isPrimitive2 = __commonJS({
|
|
|
241036
241211
|
}
|
|
241037
241212
|
});
|
|
241038
241213
|
|
|
241039
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241214
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsExtensible.js
|
|
241040
241215
|
var require_IsExtensible = __commonJS({
|
|
241041
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241216
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsExtensible.js"(exports2, module2) {
|
|
241042
241217
|
"use strict";
|
|
241043
241218
|
var GetIntrinsic = require_get_intrinsic();
|
|
241044
241219
|
var $preventExtensions = GetIntrinsic("%Object.preventExtensions%", true);
|
|
@@ -241052,9 +241227,9 @@ var require_IsExtensible = __commonJS({
|
|
|
241052
241227
|
}
|
|
241053
241228
|
});
|
|
241054
241229
|
|
|
241055
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241230
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/DefineMethodProperty.js
|
|
241056
241231
|
var require_DefineMethodProperty = __commonJS({
|
|
241057
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241232
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/DefineMethodProperty.js"(exports2, module2) {
|
|
241058
241233
|
"use strict";
|
|
241059
241234
|
var $TypeError = require_type3();
|
|
241060
241235
|
var isObject4 = require_isObject2();
|
|
@@ -241089,9 +241264,9 @@ var require_DefineMethodProperty = __commonJS({
|
|
|
241089
241264
|
}
|
|
241090
241265
|
});
|
|
241091
241266
|
|
|
241092
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241267
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/forEach.js
|
|
241093
241268
|
var require_forEach2 = __commonJS({
|
|
241094
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241269
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/helpers/forEach.js"(exports2, module2) {
|
|
241095
241270
|
"use strict";
|
|
241096
241271
|
module2.exports = function forEach(array, callback2) {
|
|
241097
241272
|
for (var i2 = 0; i2 < array.length; i2 += 1) {
|
|
@@ -241449,9 +241624,9 @@ var require_has_proto = __commonJS({
|
|
|
241449
241624
|
}
|
|
241450
241625
|
});
|
|
241451
241626
|
|
|
241452
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241627
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/OrdinaryObjectCreate.js
|
|
241453
241628
|
var require_OrdinaryObjectCreate = __commonJS({
|
|
241454
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241629
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/OrdinaryObjectCreate.js"(exports2, module2) {
|
|
241455
241630
|
"use strict";
|
|
241456
241631
|
var GetIntrinsic = require_get_intrinsic();
|
|
241457
241632
|
var $ObjectCreate = GetIntrinsic("%Object.create%", true);
|
|
@@ -241494,9 +241669,9 @@ var require_OrdinaryObjectCreate = __commonJS({
|
|
|
241494
241669
|
}
|
|
241495
241670
|
});
|
|
241496
241671
|
|
|
241497
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241672
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/RegExpExec.js
|
|
241498
241673
|
var require_RegExpExec = __commonJS({
|
|
241499
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241674
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/RegExpExec.js"(exports2, module2) {
|
|
241500
241675
|
"use strict";
|
|
241501
241676
|
var $TypeError = require_type3();
|
|
241502
241677
|
var isObject4 = require_isObject2();
|
|
@@ -241524,9 +241699,9 @@ var require_RegExpExec = __commonJS({
|
|
|
241524
241699
|
}
|
|
241525
241700
|
});
|
|
241526
241701
|
|
|
241527
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241702
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Set.js
|
|
241528
241703
|
var require_Set = __commonJS({
|
|
241529
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241704
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Set.js"(exports2, module2) {
|
|
241530
241705
|
"use strict";
|
|
241531
241706
|
var $TypeError = require_type3();
|
|
241532
241707
|
var isObject4 = require_isObject2();
|
|
@@ -241745,9 +241920,9 @@ var require_es2015 = __commonJS({
|
|
|
241745
241920
|
}
|
|
241746
241921
|
});
|
|
241747
241922
|
|
|
241748
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241923
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToPrimitive.js
|
|
241749
241924
|
var require_ToPrimitive = __commonJS({
|
|
241750
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
241925
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToPrimitive.js"(exports2, module2) {
|
|
241751
241926
|
"use strict";
|
|
241752
241927
|
var toPrimitive = require_es2015();
|
|
241753
241928
|
module2.exports = function ToPrimitive(input) {
|
|
@@ -241838,9 +242013,9 @@ var require_string_prototype = __commonJS({
|
|
|
241838
242013
|
}
|
|
241839
242014
|
});
|
|
241840
242015
|
|
|
241841
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242016
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/StringToNumber.js
|
|
241842
242017
|
var require_StringToNumber = __commonJS({
|
|
241843
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242018
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/StringToNumber.js"(exports2, module2) {
|
|
241844
242019
|
"use strict";
|
|
241845
242020
|
var GetIntrinsic = require_get_intrinsic();
|
|
241846
242021
|
var $RegExp = GetIntrinsic("%RegExp%");
|
|
@@ -241878,9 +242053,9 @@ var require_StringToNumber = __commonJS({
|
|
|
241878
242053
|
}
|
|
241879
242054
|
});
|
|
241880
242055
|
|
|
241881
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242056
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToNumber.js
|
|
241882
242057
|
var require_ToNumber = __commonJS({
|
|
241883
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242058
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToNumber.js"(exports2, module2) {
|
|
241884
242059
|
"use strict";
|
|
241885
242060
|
var GetIntrinsic = require_get_intrinsic();
|
|
241886
242061
|
var $TypeError = require_type3();
|
|
@@ -241904,9 +242079,9 @@ var require_ToNumber = __commonJS({
|
|
|
241904
242079
|
}
|
|
241905
242080
|
});
|
|
241906
242081
|
|
|
241907
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242082
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/floor.js
|
|
241908
242083
|
var require_floor3 = __commonJS({
|
|
241909
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242084
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/floor.js"(exports2, module2) {
|
|
241910
242085
|
"use strict";
|
|
241911
242086
|
var $floor = require_floor2();
|
|
241912
242087
|
module2.exports = function floor(x) {
|
|
@@ -241918,9 +242093,9 @@ var require_floor3 = __commonJS({
|
|
|
241918
242093
|
}
|
|
241919
242094
|
});
|
|
241920
242095
|
|
|
241921
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242096
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/truncate.js
|
|
241922
242097
|
var require_truncate4 = __commonJS({
|
|
241923
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242098
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/truncate.js"(exports2, module2) {
|
|
241924
242099
|
"use strict";
|
|
241925
242100
|
var floor = require_floor3();
|
|
241926
242101
|
var $TypeError = require_type3();
|
|
@@ -241934,9 +242109,9 @@ var require_truncate4 = __commonJS({
|
|
|
241934
242109
|
}
|
|
241935
242110
|
});
|
|
241936
242111
|
|
|
241937
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242112
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToIntegerOrInfinity.js
|
|
241938
242113
|
var require_ToIntegerOrInfinity = __commonJS({
|
|
241939
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242114
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToIntegerOrInfinity.js"(exports2, module2) {
|
|
241940
242115
|
"use strict";
|
|
241941
242116
|
var ToNumber = require_ToNumber();
|
|
241942
242117
|
var truncate = require_truncate4();
|
|
@@ -241955,9 +242130,9 @@ var require_ToIntegerOrInfinity = __commonJS({
|
|
|
241955
242130
|
}
|
|
241956
242131
|
});
|
|
241957
242132
|
|
|
241958
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242133
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToLength.js
|
|
241959
242134
|
var require_ToLength = __commonJS({
|
|
241960
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242135
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/ToLength.js"(exports2, module2) {
|
|
241961
242136
|
"use strict";
|
|
241962
242137
|
var MAX_SAFE_INTEGER = require_maxSafeInteger();
|
|
241963
242138
|
var ToIntegerOrInfinity = require_ToIntegerOrInfinity();
|
|
@@ -242006,9 +242181,9 @@ var require_es_set_tostringtag = __commonJS({
|
|
|
242006
242181
|
}
|
|
242007
242182
|
});
|
|
242008
242183
|
|
|
242009
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242184
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CreateRegExpStringIterator.js
|
|
242010
242185
|
var require_CreateRegExpStringIterator = __commonJS({
|
|
242011
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242186
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/CreateRegExpStringIterator.js"(exports2, module2) {
|
|
242012
242187
|
"use strict";
|
|
242013
242188
|
var GetIntrinsic = require_get_intrinsic();
|
|
242014
242189
|
var hasSymbols = require_has_symbols()();
|
|
@@ -242094,17 +242269,17 @@ var require_CreateRegExpStringIterator = __commonJS({
|
|
|
242094
242269
|
}
|
|
242095
242270
|
});
|
|
242096
242271
|
|
|
242097
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242272
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/GetIntrinsic.js
|
|
242098
242273
|
var require_GetIntrinsic = __commonJS({
|
|
242099
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242274
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/GetIntrinsic.js"(exports2, module2) {
|
|
242100
242275
|
"use strict";
|
|
242101
242276
|
module2.exports = require_get_intrinsic();
|
|
242102
242277
|
}
|
|
242103
242278
|
});
|
|
242104
242279
|
|
|
242105
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242280
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsConstructor.js
|
|
242106
242281
|
var require_IsConstructor = __commonJS({
|
|
242107
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242282
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/IsConstructor.js"(exports2, module2) {
|
|
242108
242283
|
"use strict";
|
|
242109
242284
|
var GetIntrinsic = require_GetIntrinsic();
|
|
242110
242285
|
var $construct = GetIntrinsic("%Reflect.construct%", true);
|
|
@@ -242141,9 +242316,9 @@ var require_IsConstructor = __commonJS({
|
|
|
242141
242316
|
}
|
|
242142
242317
|
});
|
|
242143
242318
|
|
|
242144
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242319
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/SpeciesConstructor.js
|
|
242145
242320
|
var require_SpeciesConstructor = __commonJS({
|
|
242146
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242321
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/SpeciesConstructor.js"(exports2, module2) {
|
|
242147
242322
|
"use strict";
|
|
242148
242323
|
var GetIntrinsic = require_get_intrinsic();
|
|
242149
242324
|
var $species = GetIntrinsic("%Symbol.species%", true);
|
|
@@ -242173,9 +242348,9 @@ var require_SpeciesConstructor = __commonJS({
|
|
|
242173
242348
|
}
|
|
242174
242349
|
});
|
|
242175
242350
|
|
|
242176
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242351
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/5/Type.js
|
|
242177
242352
|
var require_Type = __commonJS({
|
|
242178
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242353
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/5/Type.js"(exports2, module2) {
|
|
242179
242354
|
"use strict";
|
|
242180
242355
|
var isObject4 = require_isObject2();
|
|
242181
242356
|
module2.exports = function Type2(x) {
|
|
@@ -242201,9 +242376,9 @@ var require_Type = __commonJS({
|
|
|
242201
242376
|
}
|
|
242202
242377
|
});
|
|
242203
242378
|
|
|
242204
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242379
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Type.js
|
|
242205
242380
|
var require_Type2 = __commonJS({
|
|
242206
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/
|
|
242381
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/es-abstract/1.24.2/2c447595fc8e98a26d764ded2f1052660159d93be8ad81b84d5e25d5c5b88cb5/node_modules/es-abstract/2024/Type.js"(exports2, module2) {
|
|
242207
242382
|
"use strict";
|
|
242208
242383
|
var ES5Type = require_Type();
|
|
242209
242384
|
module2.exports = function Type2(x) {
|
|
@@ -242218,9 +242393,9 @@ var require_Type2 = __commonJS({
|
|
|
242218
242393
|
}
|
|
242219
242394
|
});
|
|
242220
242395
|
|
|
242221
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242396
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/regexp-matchall.js
|
|
242222
242397
|
var require_regexp_matchall = __commonJS({
|
|
242223
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242398
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/regexp-matchall.js"(exports2, module2) {
|
|
242224
242399
|
"use strict";
|
|
242225
242400
|
var CreateRegExpStringIterator = require_CreateRegExpStringIterator();
|
|
242226
242401
|
var Get = require_Get();
|
|
@@ -242269,9 +242444,9 @@ var require_regexp_matchall = __commonJS({
|
|
|
242269
242444
|
}
|
|
242270
242445
|
});
|
|
242271
242446
|
|
|
242272
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242447
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js
|
|
242273
242448
|
var require_polyfill_regexp_matchall = __commonJS({
|
|
242274
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242449
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js"(exports2, module2) {
|
|
242275
242450
|
"use strict";
|
|
242276
242451
|
var hasSymbols = require_has_symbols()();
|
|
242277
242452
|
var regexpMatchAll = require_regexp_matchall();
|
|
@@ -242284,9 +242459,9 @@ var require_polyfill_regexp_matchall = __commonJS({
|
|
|
242284
242459
|
}
|
|
242285
242460
|
});
|
|
242286
242461
|
|
|
242287
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242462
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/implementation.js
|
|
242288
242463
|
var require_implementation5 = __commonJS({
|
|
242289
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242464
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/implementation.js"(exports2, module2) {
|
|
242290
242465
|
"use strict";
|
|
242291
242466
|
var Call = require_Call();
|
|
242292
242467
|
var Get = require_Get();
|
|
@@ -242338,9 +242513,9 @@ var require_implementation5 = __commonJS({
|
|
|
242338
242513
|
}
|
|
242339
242514
|
});
|
|
242340
242515
|
|
|
242341
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242516
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/polyfill.js
|
|
242342
242517
|
var require_polyfill3 = __commonJS({
|
|
242343
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242518
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/polyfill.js"(exports2, module2) {
|
|
242344
242519
|
"use strict";
|
|
242345
242520
|
var implementation = require_implementation5();
|
|
242346
242521
|
module2.exports = function getPolyfill() {
|
|
@@ -242356,9 +242531,9 @@ var require_polyfill3 = __commonJS({
|
|
|
242356
242531
|
}
|
|
242357
242532
|
});
|
|
242358
242533
|
|
|
242359
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242534
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/shim.js
|
|
242360
242535
|
var require_shim3 = __commonJS({
|
|
242361
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242536
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/shim.js"(exports2, module2) {
|
|
242362
242537
|
"use strict";
|
|
242363
242538
|
var define2 = require_define_properties();
|
|
242364
242539
|
var hasSymbols = require_has_symbols()();
|
|
@@ -242409,9 +242584,9 @@ var require_shim3 = __commonJS({
|
|
|
242409
242584
|
}
|
|
242410
242585
|
});
|
|
242411
242586
|
|
|
242412
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242587
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/index.js
|
|
242413
242588
|
var require_string_prototype2 = __commonJS({
|
|
242414
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/
|
|
242589
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/string.prototype.matchall/4.0.12/f0581699ee5480c79037cd9dfc74ccc2674c262357d47a9a3c7c4af4a61812b5/node_modules/string.prototype.matchall/index.js"(exports2, module2) {
|
|
242415
242590
|
"use strict";
|
|
242416
242591
|
var callBind = require_call_bind();
|
|
242417
242592
|
var define2 = require_define_properties();
|
|
@@ -243749,9 +243924,9 @@ var require_lib28 = __commonJS({
|
|
|
243749
243924
|
}
|
|
243750
243925
|
});
|
|
243751
243926
|
|
|
243752
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/
|
|
243927
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/8c07b3f9ebd49354a26e728064511469a91edbd73ac5f8d823aae34ac753d3df/node_modules/@pnpm/os.env.path-extender-windows/dist/path-extender-windows.js
|
|
243753
243928
|
var require_path_extender_windows = __commonJS({
|
|
243754
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/
|
|
243929
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/8c07b3f9ebd49354a26e728064511469a91edbd73ac5f8d823aae34ac753d3df/node_modules/@pnpm/os.env.path-extender-windows/dist/path-extender-windows.js"(exports2) {
|
|
243755
243930
|
"use strict";
|
|
243756
243931
|
var __importDefault2 = exports2 && exports2.__importDefault || function(mod2) {
|
|
243757
243932
|
return mod2 && mod2.__esModule ? mod2 : { "default": mod2 };
|
|
@@ -243862,9 +244037,9 @@ var require_path_extender_windows = __commonJS({
|
|
|
243862
244037
|
}
|
|
243863
244038
|
});
|
|
243864
244039
|
|
|
243865
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/
|
|
244040
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/8c07b3f9ebd49354a26e728064511469a91edbd73ac5f8d823aae34ac753d3df/node_modules/@pnpm/os.env.path-extender-windows/dist/index.js
|
|
243866
244041
|
var require_dist9 = __commonJS({
|
|
243867
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/
|
|
244042
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender-windows/3.0.1/8c07b3f9ebd49354a26e728064511469a91edbd73ac5f8d823aae34ac753d3df/node_modules/@pnpm/os.env.path-extender-windows/dist/index.js"(exports2) {
|
|
243868
244043
|
"use strict";
|
|
243869
244044
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
243870
244045
|
exports2.addDirToWindowsEnvPath = void 0;
|
|
@@ -243875,9 +244050,9 @@ var require_dist9 = __commonJS({
|
|
|
243875
244050
|
}
|
|
243876
244051
|
});
|
|
243877
244052
|
|
|
243878
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/
|
|
244053
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/25da28c283e247fcaaaf26b1ee58e6ba7ae19138946369c95ea95ced8cb03b52/node_modules/@pnpm/os.env.path-extender/dist/path-extender.js
|
|
243879
244054
|
var require_path_extender = __commonJS({
|
|
243880
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/
|
|
244055
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/25da28c283e247fcaaaf26b1ee58e6ba7ae19138946369c95ea95ced8cb03b52/node_modules/@pnpm/os.env.path-extender/dist/path-extender.js"(exports2) {
|
|
243881
244056
|
"use strict";
|
|
243882
244057
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
243883
244058
|
exports2.renderWindowsReport = exports2.addDirToEnvPath = void 0;
|
|
@@ -243921,9 +244096,9 @@ var require_path_extender = __commonJS({
|
|
|
243921
244096
|
}
|
|
243922
244097
|
});
|
|
243923
244098
|
|
|
243924
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/
|
|
244099
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/25da28c283e247fcaaaf26b1ee58e6ba7ae19138946369c95ea95ced8cb03b52/node_modules/@pnpm/os.env.path-extender/dist/index.js
|
|
243925
244100
|
var require_dist10 = __commonJS({
|
|
243926
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/
|
|
244101
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@pnpm/os.env.path-extender/3.0.1/25da28c283e247fcaaaf26b1ee58e6ba7ae19138946369c95ea95ced8cb03b52/node_modules/@pnpm/os.env.path-extender/dist/index.js"(exports2) {
|
|
243927
244102
|
"use strict";
|
|
243928
244103
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
243929
244104
|
exports2.addDirToEnvPath = void 0;
|
|
@@ -298607,6 +298782,11 @@ function reportLockfileVerification(lockfileVerification$, opts2) {
|
|
|
298607
298782
|
const expectedDir = opts2.workspaceDir ?? opts2.cwd;
|
|
298608
298783
|
return Rx10.of(lockfileVerification$.pipe((0, import_operators11.map)((log3) => {
|
|
298609
298784
|
const path_ = formatLockfilePath(log3.lockfilePath, opts2.cwd, expectedDir);
|
|
298785
|
+
if (log3.status === "cached") {
|
|
298786
|
+
return {
|
|
298787
|
+
msg: `${source_default.green("\u2713")} Lockfile${path_} passes supply-chain policies (${formatCachedVerdict(log3.verifiedAt)})`
|
|
298788
|
+
};
|
|
298789
|
+
}
|
|
298610
298790
|
const entries = `${log3.entries} ${log3.entries === 1 ? "entry" : "entries"}`;
|
|
298611
298791
|
switch (log3.status) {
|
|
298612
298792
|
case "started":
|
|
@@ -298624,6 +298804,14 @@ function reportLockfileVerification(lockfileVerification$, opts2) {
|
|
|
298624
298804
|
}
|
|
298625
298805
|
})));
|
|
298626
298806
|
}
|
|
298807
|
+
function formatCachedVerdict(verifiedAt) {
|
|
298808
|
+
if (verifiedAt == null)
|
|
298809
|
+
return "previously verified";
|
|
298810
|
+
const elapsedMs = Date.now() - Date.parse(verifiedAt);
|
|
298811
|
+
if (Number.isNaN(elapsedMs))
|
|
298812
|
+
return "previously verified";
|
|
298813
|
+
return `verified ${prettyMilliseconds(Math.max(elapsedMs, 0), { compact: true })} ago`;
|
|
298814
|
+
}
|
|
298627
298815
|
function formatLockfilePath(lockfilePath, cwd, expectedDir) {
|
|
298628
298816
|
if (lockfilePath == null)
|
|
298629
298817
|
return "";
|