You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/DEVELOPER.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ To get started locally, follow these instructions:
7
7
1. If you haven't done it already, [make a fork of this repo](https://github.com/angular/angular-cli/fork).
8
8
2. If you are on Windows, see [the extra steps needed for contributing on Windows](#windows)
9
9
3. Clone to your local computer using `git`.
10
-
4. Make sure that you have Node `v20.19.0` or higher installed. See instructions [here](https://nodejs.org/en/download/).
10
+
4. Make sure that you have Node `v22.22.3` or higher installed (see `engines` in `package.json`). See instructions [here](https://nodejs.org/en/download/).
11
11
5. Install `pnpm`.
12
-
- You can install pnpm by running `npm i -g pnpm@9`.
12
+
- You can install pnpm by running `npm i -g pnpm@12`.
13
13
- See detailed instructions [here](https://pnpm.io/installation).
14
14
6. Run `pnpm install` from the root of your clone of this project to install dependencies.
15
15
@@ -78,7 +78,7 @@ There are two different test suites which can be run locally:
78
78
### Unit tests
79
79
80
80
- Run all tests: `pnpm bazel test //packages/...`
81
-
- Run a subset of the tests, use the full Bazel target example: `pnpm bazel test //packages/schematics/angular:angular_test`
81
+
- Run a subset of the tests, use the full Bazel target example: `pnpm bazel test //packages/schematics/angular:test`
82
82
- For a complete list of test targets use the following Bazel query: `pnpm bazel query "tests(//packages/...)"`
83
83
84
84
When debugging a specific test, change `describe()` or `it()` to `fdescribe()`
@@ -166,7 +166,7 @@ You can use the Chrome Devtools to process it. To do so:
166
166
167
167
Adding a package to this repository means running two separate commands:
168
168
169
-
1.`schematics devkit:package PACKAGE_NAME`. This will update the `.monorepo` file, and create the
169
+
1.`schematics devkit:package PACKAGE_NAME`. This will update the `.monorepo.json` file, and create the
170
170
base files for the new package (package.json, src/index, etc).
171
171
1.`pnpm admin templates`. This will update the README and all other template files that might
0 commit comments