From ae36f2df941724b32a984131dcb7891ecc27f3ff Mon Sep 17 00:00:00 2001 From: Eric Ferraiuolo <edf@ericf.me> Date: Sat, 3 Sep 2016 05:29:18 -0400 Subject: [PATCH] Fix version in CHANGELOG npm install command (#557) For the 0.4.0 CHANGELOG entry, the npm install command should be: ``` npm install --save-dev --save-exact react-scripts@0.4.0 ``` Not: ``` npm install --save-dev --save-exact react-scripts@0.3.1 ``` --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e79f11423..196a11330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Inside any created project that has not been ejected, run: ``` -npm install --save-dev --save-exact react-scripts@0.3.1 +npm install --save-dev --save-exact react-scripts@0.4.0 ``` ### Breaking Change in 0.4.0 -- GitLab