Skip to content

Commit 4b20b64

Browse files
committed
fix(ng-dev): don't run the pnpm run script spawn as silent mode
1 parent 7769f22 commit 4b20b64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ng-dev/release/publish/external-commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export abstract class ExternalCommands {
256256
spawnOptions: SpawnOptions = {},
257257
): Promise<SpawnResult> {
258258
if (PnpmVersioning.isUsingPnpm(projectDir)) {
259-
return ChildProcess.spawn('npx', ['--yes', 'pnpm', '-s', 'run', ...args], {
259+
return ChildProcess.spawn('npx', ['--yes', 'pnpm', 'run', ...args], {
260260
...spawnOptions,
261261
cwd: projectDir,
262262
});

0 commit comments

Comments
 (0)