@pnpm/global.commands 1100.0.21 → 1100.0.23

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.
Files changed (2) hide show
  1. package/lib/globalUpdate.js +3 -0
  2. package/package.json +15 -15
@@ -2,6 +2,7 @@ import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { linkBinsOfPackages } from '@pnpm/bins.linker';
4
4
  import { removeBin } from '@pnpm/bins.remover';
5
+ import { summaryLogger } from '@pnpm/core-loggers';
5
6
  import { cleanOrphanedInstallDirs, createInstallDir, getHashLink, getInstalledBinNames, scanGlobalPackages, } from '@pnpm/global.packages';
6
7
  import { isSubdir } from 'is-subdir';
7
8
  import { symlinkDir } from 'symlink-dir';
@@ -32,6 +33,7 @@ export async function handleGlobalUpdate(opts, params, commands) {
32
33
  for (const pkg of packagesToUpdate) {
33
34
  await updateGlobalPackageGroup(opts, globalDir, globalBinDir, pkg, commands); // eslint-disable-line no-await-in-loop
34
35
  }
36
+ summaryLogger.debug({ prefix: globalDir });
35
37
  return undefined;
36
38
  }
37
39
  async function updateGlobalPackageGroup(opts, globalDir, globalBinDir, pkg, commands) {
@@ -65,6 +67,7 @@ async function updateGlobalPackageGroup(opts, globalDir, globalBinDir, pkg, comm
65
67
  include,
66
68
  includeDirect: include,
67
69
  allowBuilds,
70
+ omitSummaryLog: true,
68
71
  }, depSpecs);
69
72
  await promptApproveGlobalBuilds({
70
73
  globalPkgDir: globalDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/global.commands",
3
- "version": "1100.0.21",
3
+ "version": "1100.0.23",
4
4
  "description": "Global package command handlers for pnpm",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -28,25 +28,25 @@
28
28
  "@pnpm/util.lex-comparator": "^3.0.2",
29
29
  "is-subdir": "^2.0.0",
30
30
  "symlink-dir": "^10.0.1",
31
- "@pnpm/bins.linker": "1100.0.9",
32
- "@pnpm/bins.remover": "1100.0.5",
33
- "@pnpm/bins.resolver": "1100.0.4",
34
- "@pnpm/cli.utils": "1101.0.7",
31
+ "@pnpm/bins.linker": "1100.0.10",
32
+ "@pnpm/bins.remover": "1100.0.6",
33
+ "@pnpm/cli.utils": "1101.0.8",
34
+ "@pnpm/bins.resolver": "1100.0.5",
35
35
  "@pnpm/cli.command": "1100.0.1",
36
- "@pnpm/config.matcher": "1100.0.1",
37
- "@pnpm/config.reader": "1101.4.0",
38
- "@pnpm/core-loggers": "1100.1.1",
36
+ "@pnpm/core-loggers": "1100.1.2",
37
+ "@pnpm/global.packages": "1100.0.5",
38
+ "@pnpm/installing.deps-installer": "1101.6.0",
39
+ "@pnpm/pkg-manifest.reader": "1100.0.5",
40
+ "@pnpm/store.connection-manager": "1100.2.5",
39
41
  "@pnpm/error": "1100.0.0",
40
- "@pnpm/deps.inspection.list": "1100.0.13",
41
- "@pnpm/global.packages": "1100.0.4",
42
- "@pnpm/installing.deps-installer": "1101.4.0",
43
- "@pnpm/store.connection-manager": "1100.2.3",
44
- "@pnpm/pkg-manifest.reader": "1100.0.4",
45
- "@pnpm/types": "1101.1.1"
42
+ "@pnpm/types": "1101.2.0",
43
+ "@pnpm/deps.inspection.list": "1100.0.14",
44
+ "@pnpm/config.reader": "1101.5.0",
45
+ "@pnpm/config.matcher": "1100.0.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@jest/globals": "30.3.0",
49
- "@pnpm/global.commands": "1100.0.21"
49
+ "@pnpm/global.commands": "1100.0.23"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=22.13"