pnpm 7.13.0 → 7.13.1
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 +4 -1
- package/package.json +1 -1
|
@@ -7,11 +7,11 @@ included:
|
|
|
7
7
|
injectedDeps: {}
|
|
8
8
|
layoutVersion: 5
|
|
9
9
|
nodeLinker: hoisted
|
|
10
|
-
packageManager: pnpm@7.
|
|
10
|
+
packageManager: pnpm@7.13.0
|
|
11
11
|
pendingBuilds:
|
|
12
12
|
- /node-gyp/9.1.0
|
|
13
13
|
- /encoding/0.1.13
|
|
14
|
-
prunedAt:
|
|
14
|
+
prunedAt: Tue, 04 Oct 2022 09:20:24 GMT
|
|
15
15
|
publicHoistPattern:
|
|
16
16
|
- '*eslint*'
|
|
17
17
|
- '*prettier*'
|
package/dist/pnpm.cjs
CHANGED
|
@@ -3206,7 +3206,7 @@ var require_lib4 = __commonJS({
|
|
|
3206
3206
|
var load_json_file_1 = __importDefault(require_load_json_file());
|
|
3207
3207
|
var defaultManifest = {
|
|
3208
3208
|
name: "pnpm" != null && true ? "pnpm" : "pnpm",
|
|
3209
|
-
version: "7.13.
|
|
3209
|
+
version: "7.13.1" != null && true ? "7.13.1" : "0.0.0"
|
|
3210
3210
|
};
|
|
3211
3211
|
var pkgJson;
|
|
3212
3212
|
if (require.main == null) {
|
|
@@ -139454,9 +139454,12 @@ var require_update = __commonJS({
|
|
|
139454
139454
|
manifest: await (0, cli_utils_1.readProjectManifestOnly)(opts.dir, opts)
|
|
139455
139455
|
}
|
|
139456
139456
|
];
|
|
139457
|
+
const rootDir = opts.workspaceDir ?? opts.dir;
|
|
139458
|
+
const rootProject = projects.find((project) => project.dir === rootDir);
|
|
139457
139459
|
const outdatedPkgsOfProjects = await (0, outdated_1.outdatedDepsOfProjects)(projects, input, {
|
|
139458
139460
|
...opts,
|
|
139459
139461
|
compatible: opts.latest !== true,
|
|
139462
|
+
ignoreDependencies: new Set(rootProject?.manifest?.pnpm?.updateConfig?.ignoreDependencies ?? []),
|
|
139460
139463
|
include,
|
|
139461
139464
|
retry: {
|
|
139462
139465
|
factor: opts.fetchRetryFactor,
|