From cec73541542d975c052012e00fa38296912d877d Mon Sep 17 00:00:00 2001 From: Shai Reznik Date: Wed, 8 Feb 2017 20:27:31 +0200 Subject: [PATCH] removed npm install step from upgrade process Because npm install is running as part of `ng update`. And also, if someone updates their package.json as part of `ng update`, one might wanna npm install only after that. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index db37770e6c1f..43f18e798cea 100644 --- a/README.md +++ b/README.md @@ -405,7 +405,6 @@ Local project package: ```bash rm -rf node_modules dist # use rmdir on Windows npm install --save-dev @angular/cli@latest -npm install ng update ```