Skip to content

Commit 1a4e12c

Browse files
committed
build: suppress pnpm output in local-dev.sh
Adds the silent flag (`-s`) to the `pnpm` command in the `local-dev.sh` script to reduce noise when building the `ng-dev` package.
1 parent 7177491 commit 1a4e12c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/local-dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77

88
devInfraProjectDir="$(dirname ${0})/.."
99
ngDevBinFile="${devInfraProjectDir}/dist/bin/ng-dev/npm_package/bundles/cli.mjs"
10-
bazelCommand=${BAZEL:-"pnpm bazel"}
10+
bazelCommand=${BAZEL:-"pnpm -s bazel"}
1111

1212
# Build the `ng-dev` binary into the `dev-infra/dist` directory.
1313
# We need to build in a subshell as Bazel requires the working

0 commit comments

Comments
 (0)