Skip to content

Commit eb782e5

Browse files
docs: exact version numbers for ng update
see #63
1 parent aab5e3f commit eb782e5

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/README_contributors.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,23 @@ Follow the instructions for [checking and updating the Angular CLI version](#ang
3333
3. Update your existing project using the command:
3434

3535
```sh
36-
ng update @angular/cli @angular/core --next=true
36+
ng update @angular/cli @angular/core
3737
```
38+
39+
Please pay attention to the version numbers of your project.
40+
`angular-cli-ghpages` was tested with Angular CLI v8.3.0-next.0 and Angular 8.2.0.
41+
Please figure out the required version numbers with:
3842

43+
```sh
44+
npm info @angular/cli@next
45+
npm info @angular/core@next
46+
```
47+
48+
Therefore, the command (at the time of writing) would be the following:
49+
50+
```sh
51+
ng update @angular/[email protected] @angular/[email protected]
52+
```
3953

4054
### 2. npm link
4155

0 commit comments

Comments
 (0)