From 31f7141b599757d41dbbe4236adc91a7724fddfb Mon Sep 17 00:00:00 2001 From: pikooli <> Date: Fri, 19 Jul 2024 22:35:35 +0200 Subject: [PATCH] docs(misc): adding npx where it missing --- docs/shared/tutorials/npm-workspaces.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/shared/tutorials/npm-workspaces.md b/docs/shared/tutorials/npm-workspaces.md index 5663831a84ab1..f1ee81b712908 100644 --- a/docs/shared/tutorials/npm-workspaces.md +++ b/docs/shared/tutorials/npm-workspaces.md @@ -313,13 +313,13 @@ Now you're ready to use the `nx release` command to publish the `forms` and `but To preview your first release, run: ```shell -nx release --first-release --dry-run +npx nx release --first-release --dry-run ``` The command will ask you a series of questions and then show you what the results would be. Once you are happy with the results, run it again without the `--dry-run` flag: ```shell -nx release --first-release +npx nx release --first-release ``` After this first release, you can remove the `--first-release` flag and just run `nx release --dry-run`. There is also a [dedicated feature page](/features/manage-releases) that goes into more detail about how to use the `nx release` command.