pnpm 7.32.5 → 7.33.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/node_modules/.modules.yaml +1 -1
- package/dist/pnpm.cjs +127 -50
- package/package.json +1 -1
package/dist/pnpm.cjs
CHANGED
|
@@ -3244,7 +3244,7 @@ var require_lib4 = __commonJS({
|
|
|
3244
3244
|
var load_json_file_1 = __importDefault3(require_load_json_file());
|
|
3245
3245
|
var defaultManifest = {
|
|
3246
3246
|
name: true ? "pnpm" : "pnpm",
|
|
3247
|
-
version: true ? "7.
|
|
3247
|
+
version: true ? "7.33.0" : "0.0.0"
|
|
3248
3248
|
};
|
|
3249
3249
|
var pkgJson;
|
|
3250
3250
|
if (require.main == null) {
|
|
@@ -13336,7 +13336,7 @@ var require_lib7 = __commonJS({
|
|
|
13336
13336
|
exports2.WORKSPACE_MANIFEST_FILENAME = exports2.LAYOUT_VERSION = exports2.ENGINE_NAME = exports2.LOCKFILE_VERSION_V6 = exports2.LOCKFILE_VERSION = exports2.WANTED_LOCKFILE = void 0;
|
|
13337
13337
|
exports2.WANTED_LOCKFILE = "pnpm-lock.yaml";
|
|
13338
13338
|
exports2.LOCKFILE_VERSION = 5.4;
|
|
13339
|
-
exports2.LOCKFILE_VERSION_V6 = "6.
|
|
13339
|
+
exports2.LOCKFILE_VERSION_V6 = "6.1";
|
|
13340
13340
|
exports2.ENGINE_NAME = `${process.platform}-${process.arch}-node-${process.version.split(".")[0]}`;
|
|
13341
13341
|
exports2.LAYOUT_VERSION = 5;
|
|
13342
13342
|
exports2.WORKSPACE_MANIFEST_FILENAME = "pnpm-workspace.yaml";
|
|
@@ -111940,13 +111940,15 @@ var require_lib69 = __commonJS({
|
|
|
111940
111940
|
});
|
|
111941
111941
|
} catch (err) {
|
|
111942
111942
|
if (workspacePackages != null && opts.projectDir) {
|
|
111943
|
-
|
|
111944
|
-
|
|
111945
|
-
|
|
111946
|
-
|
|
111947
|
-
|
|
111948
|
-
|
|
111949
|
-
|
|
111943
|
+
try {
|
|
111944
|
+
return tryResolveFromWorkspacePackages(workspacePackages, spec, {
|
|
111945
|
+
wantedDependency,
|
|
111946
|
+
projectDir: opts.projectDir,
|
|
111947
|
+
lockfileDir: opts.lockfileDir,
|
|
111948
|
+
hardLinkLocalPackages: wantedDependency.injected
|
|
111949
|
+
});
|
|
111950
|
+
} catch {
|
|
111951
|
+
}
|
|
111950
111952
|
}
|
|
111951
111953
|
throw err;
|
|
111952
111954
|
}
|
|
@@ -111954,13 +111956,15 @@ var require_lib69 = __commonJS({
|
|
|
111954
111956
|
const meta = pickResult.meta;
|
|
111955
111957
|
if (pickedPackage == null) {
|
|
111956
111958
|
if (workspacePackages != null && opts.projectDir) {
|
|
111957
|
-
|
|
111958
|
-
|
|
111959
|
-
|
|
111960
|
-
|
|
111961
|
-
|
|
111962
|
-
|
|
111963
|
-
|
|
111959
|
+
try {
|
|
111960
|
+
return tryResolveFromWorkspacePackages(workspacePackages, spec, {
|
|
111961
|
+
wantedDependency,
|
|
111962
|
+
projectDir: opts.projectDir,
|
|
111963
|
+
lockfileDir: opts.lockfileDir,
|
|
111964
|
+
hardLinkLocalPackages: wantedDependency.injected
|
|
111965
|
+
});
|
|
111966
|
+
} catch {
|
|
111967
|
+
}
|
|
111964
111968
|
}
|
|
111965
111969
|
throw new NoMatchingVersionError({ wantedDependency, packageMeta: meta });
|
|
111966
111970
|
}
|
|
@@ -112017,22 +112021,23 @@ var require_lib69 = __commonJS({
|
|
|
112017
112021
|
if (!opts.projectDir) {
|
|
112018
112022
|
throw new Error("Cannot resolve package from workspace because opts.projectDir is not defined");
|
|
112019
112023
|
}
|
|
112020
|
-
|
|
112024
|
+
return tryResolveFromWorkspacePackages(opts.workspacePackages, spec, {
|
|
112025
|
+
wantedDependency,
|
|
112021
112026
|
projectDir: opts.projectDir,
|
|
112022
112027
|
hardLinkLocalPackages: wantedDependency.injected,
|
|
112023
112028
|
lockfileDir: opts.lockfileDir
|
|
112024
112029
|
});
|
|
112025
|
-
if (resolvedFromLocal == null) {
|
|
112026
|
-
throw new error_1.PnpmError("NO_MATCHING_VERSION_INSIDE_WORKSPACE", `In ${path_1.default.relative(process.cwd(), opts.projectDir)}: No matching version found for ${wantedDependency.alias ?? ""}@${pref} inside the workspace`);
|
|
112027
|
-
}
|
|
112028
|
-
return resolvedFromLocal;
|
|
112029
112030
|
}
|
|
112030
112031
|
function tryResolveFromWorkspacePackages(workspacePackages, spec, opts) {
|
|
112031
|
-
if (!workspacePackages[spec.name])
|
|
112032
|
-
|
|
112032
|
+
if (!workspacePackages[spec.name]) {
|
|
112033
|
+
throw new error_1.PnpmError("WORKSPACE_PKG_NOT_FOUND", `In ${path_1.default.relative(process.cwd(), opts.projectDir)}: "${spec.name}@${opts.wantedDependency.pref ?? ""}" is in the dependencies but no package named "${spec.name}" is present in the workspace`, {
|
|
112034
|
+
hint: "Packages found in the workspace: " + Object.keys(workspacePackages).join(", ")
|
|
112035
|
+
});
|
|
112036
|
+
}
|
|
112033
112037
|
const localVersion = pickMatchingLocalVersionOrNull(workspacePackages[spec.name], spec);
|
|
112034
|
-
if (!localVersion)
|
|
112035
|
-
|
|
112038
|
+
if (!localVersion) {
|
|
112039
|
+
throw new error_1.PnpmError("NO_MATCHING_VERSION_INSIDE_WORKSPACE", `In ${path_1.default.relative(process.cwd(), opts.projectDir)}: No matching version found for ${opts.wantedDependency.alias ?? ""}@${opts.wantedDependency.pref ?? ""} inside the workspace`);
|
|
112040
|
+
}
|
|
112036
112041
|
return resolveFromLocalPackage(workspacePackages[spec.name][localVersion], spec.normalizedPref, opts);
|
|
112037
112042
|
}
|
|
112038
112043
|
function pickMatchingLocalVersionOrNull(versions, spec) {
|
|
@@ -113548,12 +113553,13 @@ var require_sortLockfileKeys = __commonJS({
|
|
|
113548
113553
|
};
|
|
113549
113554
|
var ROOT_KEYS_ORDER = {
|
|
113550
113555
|
lockfileVersion: 1,
|
|
113556
|
+
settings: 2,
|
|
113551
113557
|
// only and never are conflict options.
|
|
113552
|
-
neverBuiltDependencies:
|
|
113553
|
-
onlyBuiltDependencies:
|
|
113554
|
-
overrides:
|
|
113555
|
-
packageExtensionsChecksum:
|
|
113556
|
-
patchedDependencies:
|
|
113558
|
+
neverBuiltDependencies: 3,
|
|
113559
|
+
onlyBuiltDependencies: 3,
|
|
113560
|
+
overrides: 4,
|
|
113561
|
+
packageExtensionsChecksum: 5,
|
|
113562
|
+
patchedDependencies: 6,
|
|
113557
113563
|
specifiers: 10,
|
|
113558
113564
|
dependencies: 11,
|
|
113559
113565
|
optionalDependencies: 12,
|
|
@@ -113762,7 +113768,7 @@ var require_inlineSpecifiersLockfileConverters = __commonJS({
|
|
|
113762
113768
|
}
|
|
113763
113769
|
let revertedImporters = mapValues(importers, revertProjectSnapshot);
|
|
113764
113770
|
let packages = lockfile.packages;
|
|
113765
|
-
if (
|
|
113771
|
+
if (originalVersionStr.startsWith("6.")) {
|
|
113766
113772
|
revertedImporters = Object.fromEntries(Object.entries(revertedImporters ?? {}).map(([importerId, pkgSnapshot]) => {
|
|
113767
113773
|
const newSnapshot = { ...pkgSnapshot };
|
|
113768
113774
|
if (newSnapshot.dependencies != null) {
|
|
@@ -113793,7 +113799,7 @@ var require_inlineSpecifiersLockfileConverters = __commonJS({
|
|
|
113793
113799
|
packages,
|
|
113794
113800
|
importers: revertedImporters
|
|
113795
113801
|
};
|
|
113796
|
-
if (
|
|
113802
|
+
if (originalVersionStr.startsWith("6.") && newLockfile.time) {
|
|
113797
113803
|
newLockfile.time = Object.fromEntries(Object.entries(newLockfile.time).map(([depPath, time]) => [convertLockfileV6DepPathToV5DepPath(depPath), time]));
|
|
113798
113804
|
}
|
|
113799
113805
|
return newLockfile;
|
|
@@ -114012,8 +114018,12 @@ var require_write = __commonJS({
|
|
|
114012
114018
|
delete lockfileToSave.packages;
|
|
114013
114019
|
}
|
|
114014
114020
|
}
|
|
114021
|
+
const isLockfileV6 = lockfileToSave.lockfileVersion.toString().startsWith("6.");
|
|
114022
|
+
if (!isLockfileV6) {
|
|
114023
|
+
delete lockfileToSave["settings"];
|
|
114024
|
+
}
|
|
114015
114025
|
if (lockfileToSave.time) {
|
|
114016
|
-
lockfileToSave.time = (
|
|
114026
|
+
lockfileToSave.time = (isLockfileV6 ? pruneTimeInLockfileV6 : pruneTime)(lockfileToSave.time, lockfile.importers);
|
|
114017
114027
|
}
|
|
114018
114028
|
if (lockfileToSave.overrides != null && (0, isEmpty_1.default)(lockfileToSave.overrides)) {
|
|
114019
114029
|
delete lockfileToSave.overrides;
|
|
@@ -114496,7 +114506,11 @@ var require_read = __commonJS({
|
|
|
114496
114506
|
}, {});
|
|
114497
114507
|
return {
|
|
114498
114508
|
importers,
|
|
114499
|
-
lockfileVersion: opts.lockfileVersion || constants_1.LOCKFILE_VERSION
|
|
114509
|
+
lockfileVersion: opts.lockfileVersion || constants_1.LOCKFILE_VERSION,
|
|
114510
|
+
settings: {
|
|
114511
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
114512
|
+
excludeLinksFromLockfile: false
|
|
114513
|
+
}
|
|
114500
114514
|
};
|
|
114501
114515
|
}
|
|
114502
114516
|
exports2.createLockfileObject = createLockfileObject;
|
|
@@ -125765,7 +125779,10 @@ var require_readLockfiles = __commonJS({
|
|
|
125765
125779
|
}
|
|
125766
125780
|
})());
|
|
125767
125781
|
const files = await Promise.all(fileReads);
|
|
125768
|
-
const sopts = {
|
|
125782
|
+
const sopts = {
|
|
125783
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
125784
|
+
lockfileVersion: wantedLockfileVersion
|
|
125785
|
+
};
|
|
125769
125786
|
const importerIds = opts.projects.map((importer) => importer.id);
|
|
125770
125787
|
const currentLockfile = files[1] ?? (0, lockfile_file_1.createLockfileObject)(importerIds, sopts);
|
|
125771
125788
|
for (const importerId of importerIds) {
|
|
@@ -125899,6 +125916,7 @@ var require_lib107 = __commonJS({
|
|
|
125899
125916
|
storeDir: opts.storeDir,
|
|
125900
125917
|
virtualStoreDir,
|
|
125901
125918
|
...await (0, readLockfiles_1.readLockfiles)({
|
|
125919
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
125902
125920
|
force: opts.force,
|
|
125903
125921
|
forceSharedLockfile: opts.forceSharedLockfile,
|
|
125904
125922
|
frozenLockfile: opts.frozenLockfile === true,
|
|
@@ -126073,6 +126091,7 @@ var require_lib107 = __commonJS({
|
|
|
126073
126091
|
storeDir,
|
|
126074
126092
|
virtualStoreDir,
|
|
126075
126093
|
...await (0, readLockfiles_1.readLockfiles)({
|
|
126094
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
126076
126095
|
force: opts.force,
|
|
126077
126096
|
forceSharedLockfile: opts.forceSharedLockfile,
|
|
126078
126097
|
frozenLockfile: false,
|
|
@@ -180816,6 +180835,10 @@ var require_lib131 = __commonJS({
|
|
|
180816
180835
|
spec = spec.slice("workspace:".length);
|
|
180817
180836
|
if (spec === "*")
|
|
180818
180837
|
return isWorkspaceProtocol ? "patch" : "none";
|
|
180838
|
+
if (spec.startsWith("npm:")) {
|
|
180839
|
+
const index = spec.lastIndexOf("@");
|
|
180840
|
+
spec = spec.slice(index + 1);
|
|
180841
|
+
}
|
|
180819
180842
|
const parsedRange = (0, semver_utils_1.parseRange)(spec);
|
|
180820
180843
|
if (parsedRange.length !== 1)
|
|
180821
180844
|
return void 0;
|
|
@@ -197197,6 +197220,13 @@ var require_install = __commonJS({
|
|
|
197197
197220
|
var getPreferredVersions_1 = require_getPreferredVersions();
|
|
197198
197221
|
var link_1 = require_link3();
|
|
197199
197222
|
var reportPeerDependencyIssues_1 = require_reportPeerDependencyIssues2();
|
|
197223
|
+
var LockfileConfigMismatchError = class extends error_1.PnpmError {
|
|
197224
|
+
constructor(outdatedLockfileSettingName) {
|
|
197225
|
+
super("LOCKFILE_CONFIG_MISMATCH", `Cannot proceed with the frozen installation. The current "${outdatedLockfileSettingName}" configuration doesn't match the value found in the lockfile`, {
|
|
197226
|
+
hint: 'Update your lockfile using "pnpm install --no-frozen-lockfile"'
|
|
197227
|
+
});
|
|
197228
|
+
}
|
|
197229
|
+
};
|
|
197200
197230
|
var BROKEN_LOCKFILE_INTEGRITY_ERRORS = /* @__PURE__ */ new Set([
|
|
197201
197231
|
"ERR_PNPM_UNEXPECTED_PKG_CONTENT_IN_STORE",
|
|
197202
197232
|
"ERR_PNPM_TARBALL_INTEGRITY"
|
|
@@ -197319,21 +197349,39 @@ var require_install = __commonJS({
|
|
|
197319
197349
|
if (opts.useLockfileV6 == null) {
|
|
197320
197350
|
opts.useLockfileV6 = ctx.wantedLockfile.lockfileVersion.toString().startsWith("6.");
|
|
197321
197351
|
}
|
|
197322
|
-
|
|
197323
|
-
|
|
197324
|
-
|
|
197325
|
-
|
|
197326
|
-
|
|
197327
|
-
|
|
197328
|
-
|
|
197352
|
+
const frozenLockfile = opts.frozenLockfile || opts.frozenLockfileIfExists && ctx.existsWantedLockfile;
|
|
197353
|
+
let outdatedLockfileSettings = false;
|
|
197354
|
+
if (!opts.ignorePackageManifest) {
|
|
197355
|
+
const outdatedLockfileSettingName = getOutdatedLockfileSetting(ctx.wantedLockfile, {
|
|
197356
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
197357
|
+
overrides: opts.overrides,
|
|
197358
|
+
neverBuiltDependencies: opts.neverBuiltDependencies,
|
|
197359
|
+
onlyBuiltDependencies: opts.onlyBuiltDependencies,
|
|
197360
|
+
packageExtensionsChecksum,
|
|
197361
|
+
patchedDependencies
|
|
197362
|
+
});
|
|
197363
|
+
outdatedLockfileSettings = outdatedLockfileSettingName != null;
|
|
197364
|
+
if (frozenLockfile && outdatedLockfileSettings) {
|
|
197365
|
+
throw new LockfileConfigMismatchError(outdatedLockfileSettingName);
|
|
197366
|
+
}
|
|
197367
|
+
}
|
|
197368
|
+
let needsFullResolution = outdatedLockfileSettings || opts.fixLockfile || opts.useLockfileV6 && !ctx.wantedLockfile.lockfileVersion.toString().startsWith("6.");
|
|
197329
197369
|
if (needsFullResolution) {
|
|
197370
|
+
ctx.wantedLockfile.settings = {
|
|
197371
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
197372
|
+
excludeLinksFromLockfile: false
|
|
197373
|
+
};
|
|
197330
197374
|
ctx.wantedLockfile.overrides = opts.overrides;
|
|
197331
197375
|
ctx.wantedLockfile.neverBuiltDependencies = opts.neverBuiltDependencies;
|
|
197332
197376
|
ctx.wantedLockfile.onlyBuiltDependencies = opts.onlyBuiltDependencies;
|
|
197333
197377
|
ctx.wantedLockfile.packageExtensionsChecksum = packageExtensionsChecksum;
|
|
197334
197378
|
ctx.wantedLockfile.patchedDependencies = patchedDependencies;
|
|
197379
|
+
} else if (!frozenLockfile) {
|
|
197380
|
+
ctx.wantedLockfile.settings = {
|
|
197381
|
+
autoInstallPeers: opts.autoInstallPeers,
|
|
197382
|
+
excludeLinksFromLockfile: false
|
|
197383
|
+
};
|
|
197335
197384
|
}
|
|
197336
|
-
const frozenLockfile = opts.frozenLockfile || opts.frozenLockfileIfExists && ctx.existsWantedLockfile;
|
|
197337
197385
|
if (!ctx.lockfileHadConflicts && !opts.fixLockfile && !opts.dedupe && installsOnly && (frozenLockfile && !opts.lockfileOnly || opts.ignorePackageManifest || !needsFullResolution && opts.preferFrozenLockfile && (!opts.pruneLockfileImporters || Object.keys(ctx.wantedLockfile.importers).length === Object.keys(ctx.projects).length) && ctx.existsWantedLockfile && (ctx.wantedLockfile.lockfileVersion === constants_1.LOCKFILE_VERSION || ctx.wantedLockfile.lockfileVersion === constants_1.LOCKFILE_VERSION_V6) && await (0, allProjectsAreUpToDate_1.allProjectsAreUpToDate)(Object.values(ctx.projects), {
|
|
197338
197386
|
autoInstallPeers: opts.autoInstallPeers,
|
|
197339
197387
|
linkWorkspacePackages: opts.linkWorkspacePackagesDepth >= 0,
|
|
@@ -197566,8 +197614,29 @@ var require_install = __commonJS({
|
|
|
197566
197614
|
};
|
|
197567
197615
|
}, patches);
|
|
197568
197616
|
}
|
|
197569
|
-
function
|
|
197570
|
-
|
|
197617
|
+
function getOutdatedLockfileSetting(lockfile, { neverBuiltDependencies, onlyBuiltDependencies, overrides, packageExtensionsChecksum, patchedDependencies, autoInstallPeers }) {
|
|
197618
|
+
if (!(0, equals_1.default)(lockfile.overrides ?? {}, overrides ?? {})) {
|
|
197619
|
+
return "overrides";
|
|
197620
|
+
}
|
|
197621
|
+
if (!(0, equals_1.default)((lockfile.neverBuiltDependencies ?? []).sort(), (neverBuiltDependencies ?? []).sort())) {
|
|
197622
|
+
return "neverBuiltDependencies";
|
|
197623
|
+
}
|
|
197624
|
+
if (!(0, equals_1.default)(onlyBuiltDependencies?.sort(), lockfile.onlyBuiltDependencies)) {
|
|
197625
|
+
return "onlyBuiltDependencies";
|
|
197626
|
+
}
|
|
197627
|
+
if (lockfile.packageExtensionsChecksum !== packageExtensionsChecksum) {
|
|
197628
|
+
return "packageExtensionsChecksum";
|
|
197629
|
+
}
|
|
197630
|
+
if (!(0, equals_1.default)(lockfile.patchedDependencies ?? {}, patchedDependencies ?? {})) {
|
|
197631
|
+
return "patchedDependencies";
|
|
197632
|
+
}
|
|
197633
|
+
if (lockfile.settings?.autoInstallPeers != null && lockfile.settings.autoInstallPeers !== autoInstallPeers) {
|
|
197634
|
+
return "settings.autoInstallPeers";
|
|
197635
|
+
}
|
|
197636
|
+
if (lockfile.settings?.excludeLinksFromLockfile) {
|
|
197637
|
+
return "settings.excludeLinksFromLockfile";
|
|
197638
|
+
}
|
|
197639
|
+
return null;
|
|
197571
197640
|
}
|
|
197572
197641
|
function createObjectChecksum(obj) {
|
|
197573
197642
|
const s = JSON.stringify(obj);
|
|
@@ -200587,6 +200656,7 @@ var require_outdated = __commonJS({
|
|
|
200587
200656
|
var types_1 = require_lib25();
|
|
200588
200657
|
var dp = __importStar4(require_lib78());
|
|
200589
200658
|
var semver_12 = __importDefault3(require_semver2());
|
|
200659
|
+
var matcher_1 = require_lib19();
|
|
200590
200660
|
__exportStar3(require_createManifestGetter(), exports2);
|
|
200591
200661
|
async function outdated(opts) {
|
|
200592
200662
|
if (packageHasNoDeps(opts.manifest))
|
|
@@ -200598,6 +200668,7 @@ var require_outdated = __commonJS({
|
|
|
200598
200668
|
const importerId = (0, lockfile_file_1.getLockfileImporterId)(opts.lockfileDir, opts.prefix);
|
|
200599
200669
|
const currentLockfile = opts.currentLockfile ?? { importers: { [importerId]: {} } };
|
|
200600
200670
|
const outdated2 = [];
|
|
200671
|
+
const ignoreDependenciesMatcher = opts.ignoreDependencies?.length ? (0, matcher_1.createMatcher)(opts.ignoreDependencies) : void 0;
|
|
200601
200672
|
await Promise.all(types_1.DEPENDENCIES_FIELDS.map(async (depType) => {
|
|
200602
200673
|
if (opts.include?.[depType] === false || opts.wantedLockfile.importers[importerId][depType] == null)
|
|
200603
200674
|
return;
|
|
@@ -200610,7 +200681,7 @@ var require_outdated = __commonJS({
|
|
|
200610
200681
|
return;
|
|
200611
200682
|
const ref = opts.wantedLockfile.importers[importerId][depType][alias];
|
|
200612
200683
|
if (ref.startsWith("file:") || // ignoring linked packages. (For backward compatibility)
|
|
200613
|
-
|
|
200684
|
+
ignoreDependenciesMatcher?.(alias)) {
|
|
200614
200685
|
return;
|
|
200615
200686
|
}
|
|
200616
200687
|
const relativeDepPath = dp.refToRelative(ref, alias);
|
|
@@ -201117,7 +201188,7 @@ var require_update2 = __commonJS({
|
|
|
201117
201188
|
const outdatedPkgsOfProjects = await (0, outdated_1.outdatedDepsOfProjects)(projects, input, {
|
|
201118
201189
|
...opts,
|
|
201119
201190
|
compatible: opts.latest !== true,
|
|
201120
|
-
ignoreDependencies:
|
|
201191
|
+
ignoreDependencies: rootProject?.manifest?.pnpm?.updateConfig?.ignoreDependencies,
|
|
201121
201192
|
include,
|
|
201122
201193
|
retry: {
|
|
201123
201194
|
factor: opts.fetchRetryFactor,
|
|
@@ -221432,7 +221503,7 @@ var require_recursive4 = __commonJS({
|
|
|
221432
221503
|
const outdatedPackagesByProject = await (0, outdated_1.outdatedDepsOfProjects)(pkgs, params, {
|
|
221433
221504
|
...opts,
|
|
221434
221505
|
fullMetadata: opts.long,
|
|
221435
|
-
ignoreDependencies:
|
|
221506
|
+
ignoreDependencies: rootManifest?.manifest?.pnpm?.updateConfig?.ignoreDependencies,
|
|
221436
221507
|
retry: {
|
|
221437
221508
|
factor: opts.fetchRetryFactor,
|
|
221438
221509
|
maxTimeout: opts.fetchRetryMaxtimeout,
|
|
@@ -221691,7 +221762,7 @@ pnpm outdated gulp-* @babel/core`,
|
|
|
221691
221762
|
const [outdatedPackages] = await (0, outdated_1.outdatedDepsOfProjects)(packages, params, {
|
|
221692
221763
|
...opts,
|
|
221693
221764
|
fullMetadata: opts.long,
|
|
221694
|
-
ignoreDependencies:
|
|
221765
|
+
ignoreDependencies: manifest?.pnpm?.updateConfig?.ignoreDependencies,
|
|
221695
221766
|
include,
|
|
221696
221767
|
retry: {
|
|
221697
221768
|
factor: opts.fetchRetryFactor,
|
|
@@ -222878,7 +222949,13 @@ var require_patchCommit = __commonJS({
|
|
|
222878
222949
|
if (opts?.allProjectsGraph?.[lockfileDir].package.manifest) {
|
|
222879
222950
|
opts.allProjectsGraph[lockfileDir].package.manifest = rootProjectManifest;
|
|
222880
222951
|
}
|
|
222881
|
-
return plugin_commands_installation_1.install.handler(
|
|
222952
|
+
return plugin_commands_installation_1.install.handler({
|
|
222953
|
+
...opts,
|
|
222954
|
+
rawLocalConfig: {
|
|
222955
|
+
...opts.rawLocalConfig,
|
|
222956
|
+
"frozen-lockfile": false
|
|
222957
|
+
}
|
|
222958
|
+
});
|
|
222882
222959
|
}
|
|
222883
222960
|
exports2.handler = handler;
|
|
222884
222961
|
async function diffFolders(folderA, folderB) {
|