mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-18 13:51:38 -04:00
fix: respect silent reporter when deciding whether to output CI group stdout markers (#9565)
close #9563
This commit is contained in:
committed by
Zoltan Kochan
parent
3f268ff6f5
commit
55424eb581
6
.changeset/thin-badgers-punch.md
Normal file
6
.changeset/thin-badgers-punch.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
"@pnpm/plugin-commands-script-runners": patch
|
||||||
|
"pnpm": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
`pnpm -r --silent run` should not print out section [#9563](https://github.com/pnpm/pnpm/issues/9563).
|
||||||
@@ -145,7 +145,7 @@ export async function runRecursive (
|
|||||||
workspaceDir: opts.workspaceDir,
|
workspaceDir: opts.workspaceDir,
|
||||||
}
|
}
|
||||||
const _runScript = runScript.bind(null, { manifest: pkg.package.manifest, lifecycleOpts, runScriptOptions, passedThruArgs })
|
const _runScript = runScript.bind(null, { manifest: pkg.package.manifest, lifecycleOpts, runScriptOptions, passedThruArgs })
|
||||||
const groupEnd = getWorkspaceConcurrency(opts.workspaceConcurrency) > 1
|
const groupEnd = Boolean(lifecycleOpts.silent) || getWorkspaceConcurrency(opts.workspaceConcurrency) > 1
|
||||||
? undefined
|
? undefined
|
||||||
: groupStart(formatSectionName({
|
: groupStart(formatSectionName({
|
||||||
name: pkg.package.manifest.name,
|
name: pkg.package.manifest.name,
|
||||||
|
|||||||
Reference in New Issue
Block a user