Skip to content

Update README to new Project name #4349

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ with NPM 3 or higher.

**BEFORE YOU INSTALL:** please read the [prerequisites](#prerequisites)
```bash
npm install -g angular-cli
npm install -g @angular/cli
```

## Usage
Expand Down Expand Up @@ -430,15 +430,16 @@ To update `angular-cli` to a new version, you must update both the global packag

Global package:
```bash
npm uninstall -g angular-cli
npm uninstall -g angular-cli #for older versions < beta 28.x
npm uninstall -g @angular/cli
npm cache clean
npm install -g angular-cli@latest
npm install -g @angular/cli@latest
```

Local project package:
```bash
rm -rf node_modules dist # use rmdir on Windows
npm install --save-dev angular-cli@latest
npm install --save-dev @angular/cli@latest
npm install
ng update
```
Expand Down