Skip to content

Commit da3c1f8

Browse files
authored
docs(scully): update cli version
updates the instructions to reflect the release of angular v9 removing the `@next` tag
1 parent 0f01da3 commit da3c1f8

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

docs/getting-started.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,18 @@
44

55
## Prerequisites
66

7-
The first thing you need to get started with Scully is a working Angular app using **Angular 8.x.x** and **9.x.x** and **Node 12.x.x**
7+
The first thing you need to get started with Scully is a working Angular app using **Angular 8.x.x** or **9.x.x** and **Node 12.x.x**
88

99
You can create a new Angular 9 app using the following command:
1010

1111
```bash
12-
npx -p @angular/cli@next ng new my-scully-app
12+
npx -p @angular/cli ng new my-scully-app
1313
```
1414

15-
If that fails, you can install the `next` version of Angular CLI globally and create a new app with that version.
16-
17-
**Note**: doing this means that any new apps you will create after this will use version 9.
15+
If that fails, you can install the Angular CLI globally and create a new app with that version.
1816

1917
```
20-
npm install -g @angular/cli@next
18+
npm install -g @angular/cli
2119
ng new my-scully-app
2220
```
2321

0 commit comments

Comments
 (0)