From b20bf5dc70a2c71cdddd8cdab4a4c0f77cc72c3f Mon Sep 17 00:00:00 2001 From: Shuaib Hasan Akib Date: Sun, 9 Nov 2025 11:03:42 +0600 Subject: [PATCH] docs: add shell language to CLI installation examples Added `language="shell"` to installation command examples to display the shell prompt `$` icon consistently across npm, pnpm, yarn, and bun code blocks. (cherry picked from commit 27d54654e34d44b562a22a0d13054e006df6ee92) --- adev/src/content/tools/cli/setup-local.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/adev/src/content/tools/cli/setup-local.md b/adev/src/content/tools/cli/setup-local.md index a4f69388b56..58ce7fdbb78 100644 --- a/adev/src/content/tools/cli/setup-local.md +++ b/adev/src/content/tools/cli/setup-local.md @@ -40,21 +40,25 @@ To install the Angular CLI, open a terminal window and run the following command npm install -g @angular/cli pnpm install -g @angular/cli yarn global add @angular/cli bun install -g @angular/cli @@ -82,21 +86,25 @@ Run with `sudo` to execute the command as the root user and enter your password sudo npm install -g @angular/cli sudo pnpm install -g @angular/cli sudo yarn global add @angular/cli sudo bun install -g @angular/cli