From 9f57d3da55da95cc65738964ce573e7b9ff53cc2 Mon Sep 17 00:00:00 2001 From: MeAkib Date: Sat, 20 Sep 2025 10:24:25 +0600 Subject: [PATCH] docs: correct pnpm install command Updated docs to use `pnpm i` instead of `pnpm`, since `pnpm` alone does not install dependencies. --- DEV_ENVIRONMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEV_ENVIRONMENT.md b/DEV_ENVIRONMENT.md index f2405d68cf2f..a83b90c942fb 100644 --- a/DEV_ENVIRONMENT.md +++ b/DEV_ENVIRONMENT.md @@ -6,7 +6,7 @@ 4. Clone your fork to your machine with `git clone`. Recommendation: name your git remotes `upstream` for `angular/components` and `` for your fork. Also see the [team git shortcuts](https://github.com/angular/components/wiki/Team-git----bash-shortcuts). -5. From the root of the project, run `pnpm` to install the dependencies. +5. From the root of the project, run `pnpm i` to install the dependencies. To build angular/components in release mode, run `pnpm build`. The output can be found under `dist/releases`.