pnpm 9.0.0 → 9.0.2
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 +2 -2
- package/dist/pnpm.cjs +3 -3
- package/package.json +1 -1
|
@@ -202,9 +202,9 @@ included:
|
|
|
202
202
|
injectedDeps: {}
|
|
203
203
|
layoutVersion: 5
|
|
204
204
|
nodeLinker: hoisted
|
|
205
|
-
packageManager: pnpm@9.0.
|
|
205
|
+
packageManager: pnpm@9.0.1
|
|
206
206
|
pendingBuilds: []
|
|
207
|
-
prunedAt:
|
|
207
|
+
prunedAt: Wed, 17 Apr 2024 16:50:08 GMT
|
|
208
208
|
publicHoistPattern:
|
|
209
209
|
- '*eslint*'
|
|
210
210
|
- '*prettier*'
|
package/dist/pnpm.cjs
CHANGED
|
@@ -3357,7 +3357,7 @@ var require_lib4 = __commonJS({
|
|
|
3357
3357
|
var load_json_file_1 = __importDefault2(require_load_json_file());
|
|
3358
3358
|
var defaultManifest = {
|
|
3359
3359
|
name: true ? "pnpm" : "pnpm",
|
|
3360
|
-
version: true ? "9.0.
|
|
3360
|
+
version: true ? "9.0.2" : "0.0.0"
|
|
3361
3361
|
};
|
|
3362
3362
|
var pkgJson;
|
|
3363
3363
|
if (require.main == null) {
|
|
@@ -175808,7 +175808,7 @@ var require_resolveDependencyTree = __commonJS({
|
|
|
175808
175808
|
}
|
|
175809
175809
|
const childNodeId = (0, nodeIdUtils_1.createNodeId)(parentNodeId, child.depPath);
|
|
175810
175810
|
childrenNodeIds[child.alias] = childNodeId;
|
|
175811
|
-
installable = installable
|
|
175811
|
+
installable = installable || !ctx.skipped.has(child.depPath);
|
|
175812
175812
|
ctx.dependenciesTree.set(childNodeId, {
|
|
175813
175813
|
children: () => buildTree(ctx, childNodeId, child.depPath, ctx.childrenByParentDepPath[child.depPath], depth + 1, installable),
|
|
175814
175814
|
depth,
|
|
@@ -180886,7 +180886,7 @@ var require_install = __commonJS({
|
|
|
180886
180886
|
throw new LockfileConfigMismatchError(outdatedLockfileSettingName);
|
|
180887
180887
|
}
|
|
180888
180888
|
}
|
|
180889
|
-
let needsFullResolution = outdatedLockfileSettings || opts.fixLockfile || !ctx.wantedLockfile.lockfileVersion.toString().startsWith(`${constants_1.LOCKFILE_MAJOR_VERSION}.`) || opts.forceFullResolution;
|
|
180889
|
+
let needsFullResolution = outdatedLockfileSettings || opts.fixLockfile || !ctx.wantedLockfile.lockfileVersion.toString().startsWith(`${constants_1.LOCKFILE_MAJOR_VERSION}.`) && ctx.wantedLockfile.lockfileVersion !== constants_1.LOCKFILE_VERSION_V6 || opts.forceFullResolution;
|
|
180890
180890
|
if (needsFullResolution) {
|
|
180891
180891
|
ctx.wantedLockfile.settings = {
|
|
180892
180892
|
autoInstallPeers: opts.autoInstallPeers,
|