pnpm 7.32.2 → 7.32.3
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 +12 -9
- 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.32.
|
|
3247
|
+
version: true ? "7.32.3" : "0.0.0"
|
|
3248
3248
|
};
|
|
3249
3249
|
var pkgJson;
|
|
3250
3250
|
if (require.main == null) {
|
|
@@ -126304,9 +126304,9 @@ var require_lib109 = __commonJS({
|
|
|
126304
126304
|
}
|
|
126305
126305
|
});
|
|
126306
126306
|
|
|
126307
|
-
// ../node_modules/.pnpm/@pnpm+graph-sequencer@1.1.
|
|
126307
|
+
// ../node_modules/.pnpm/@pnpm+graph-sequencer@1.1.1/node_modules/@pnpm/graph-sequencer/index.js
|
|
126308
126308
|
var require_graph_sequencer = __commonJS({
|
|
126309
|
-
"../node_modules/.pnpm/@pnpm+graph-sequencer@1.1.
|
|
126309
|
+
"../node_modules/.pnpm/@pnpm+graph-sequencer@1.1.1/node_modules/@pnpm/graph-sequencer/index.js"(exports2, module2) {
|
|
126310
126310
|
"use strict";
|
|
126311
126311
|
var assert = require("assert");
|
|
126312
126312
|
function getCycles(currDepsMap, visited) {
|
|
@@ -126322,13 +126322,16 @@ var require_graph_sequencer = __commonJS({
|
|
|
126322
126322
|
if (typeof deps === "undefined")
|
|
126323
126323
|
return;
|
|
126324
126324
|
for (let dep of deps) {
|
|
126325
|
-
if (
|
|
126326
|
-
|
|
126325
|
+
if (visitedDeps.includes(dep)) {
|
|
126326
|
+
continue;
|
|
126327
126327
|
}
|
|
126328
|
-
|
|
126329
|
-
|
|
126330
|
-
|
|
126328
|
+
visitedDeps.push(dep);
|
|
126329
|
+
const idx = cycle.indexOf(dep);
|
|
126330
|
+
if (idx > -1) {
|
|
126331
|
+
cycles.push(cycle.slice(idx));
|
|
126332
|
+
continue;
|
|
126331
126333
|
}
|
|
126334
|
+
visit(dep, cycle.concat(dep));
|
|
126332
126335
|
}
|
|
126333
126336
|
}
|
|
126334
126337
|
for (let item of items) {
|
|
@@ -179524,7 +179527,7 @@ var require_lib130 = __commonJS({
|
|
|
179524
179527
|
if (opts.enableModulesDir !== false) {
|
|
179525
179528
|
if (!opts.ignorePackageManifest) {
|
|
179526
179529
|
await Promise.all(selectedProjects.map(async (project) => {
|
|
179527
|
-
if (opts.publicHoistPattern?.length && path_1.default.relative(opts.lockfileDir, project.rootDir) === "") {
|
|
179530
|
+
if (opts.nodeLinker === "hoisted" || opts.publicHoistPattern?.length && path_1.default.relative(opts.lockfileDir, project.rootDir) === "") {
|
|
179528
179531
|
await linkBinsOfImporter(project, {
|
|
179529
179532
|
extraNodePaths: opts.extraNodePaths,
|
|
179530
179533
|
preferSymlinkedExecutables: opts.preferSymlinkedExecutables
|