mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-20 12:58:26 -05: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,
|
||||
}
|
||||
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
|
||||
: groupStart(formatSectionName({
|
||||
name: pkg.package.manifest.name,
|
||||
|
||||
Reference in New Issue
Block a user