Skip to content

Commit 648666f

Browse files
cre8davideast
cre8
authored andcommitted
feat(docs): update installation guide to latest cli version (angular#519)
* update installation guide to latest cli version The latest cli build (14) is based on webpack in the master branch so you don't need the `@webpack` anymore. * Update 1-install-and-setup.md Added lowest possible version of angular-cli
1 parent a53fac0 commit 648666f

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

docs/1-install-and-setup.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
> Getting started with AngularFire2 is easy with the [Angular CLI](https://github.com/angular/angular-cli). Follow the 10 steps below to get started. Don't worry, we're always working to make this shorter.
44
5-
**The setups below use the Webpack branch of the [Angular CLI](https://github.com/angular/angular-cli).**
6-
75
### 0. Prerequisites
86

9-
Before you start installing AngularFire2, make sure you have correct version of angular-cli installed.
10-
To verify run the command `ng -v` and ensure you see `angular-cli: 1.x.x-beta.x-webpack.x`.
7+
Before you start installing AngularFire2, make sure you have latest version of angular-cli installed.
8+
To verify run the command `ng -v` and ensure you see `angular-cli: 1.x.x-beta.xx`. The lowest compatible version is `1.x.x-beta.14`.
119

1210
If not, you may need to do the following:
1311

@@ -16,15 +14,15 @@ If not, you may need to do the following:
1614
npm uninstall -g angular-cli
1715

1816
# reinstall clean version
19-
npm install -g angular-cli@webpack
17+
npm install -g angular-cli
2018
```
2119

2220
You need the Angular CLI, typings, and TypeScript 2.0. TypeScript 2.0 is required for AngularFire2.
2321

2422
```bash
25-
npm install -g angular-cli@webpack
23+
npm install -g angular-cli
2624
# or install locally
27-
npm install angular-cli@webpack --save-dev
25+
npm install angular-cli --save-dev
2826
# make sure you have typings installed
2927
npm install -g typings
3028
npm install -g [email protected]

0 commit comments

Comments
 (0)