From c48bc57b59d9678ed18cf532eebeefea18064351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Thu, 13 Jun 2024 17:34:59 +0700 Subject: [PATCH] docs(exec): correct examples section (#547) I just noticed that mistakenly I inserted `--no-reporter-hide-prefix` section into between the `--recursive, -r` section. --- docs/cli/exec.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cli/exec.md b/docs/cli/exec.md index a81c6915b0e2..bba7d205c2cd 100644 --- a/docs/cli/exec.md +++ b/docs/cli/exec.md @@ -45,10 +45,6 @@ Execute the shell command in every project of the workspace. The name of the current package is available through the environment variable `PNPM_PACKAGE_NAME`. -### --no-reporter-hide-prefix - -Do not hide prefix when running commands in parallel. - #### Examples Prune `node_modules` installations for all packages: @@ -63,6 +59,10 @@ View package information for all packages. This should be used with the `--shell pnpm -rc exec pnpm view \$PNPM_PACKAGE_NAME ``` +### --no-reporter-hide-prefix + +Do not hide prefix when running commands in parallel. + ### --resume-from <package_name\> Resume execution from a particular project. This can be useful if you are working with a large workspace and you want to restart a build at a particular project without running through all of the projects that precede it in the build order.