From 290e61993d25f7863fe01b06387ac6890a72c012 Mon Sep 17 00:00:00 2001 From: Myk Klemme Date: Tue, 28 Feb 2017 22:41:09 -0800 Subject: [PATCH] Fixed missing flag in first preprocess command (#1687) --- packages/react-scripts/template/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/template/README.md b/packages/react-scripts/template/README.md index e290b935625..9825bad0a05 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -428,7 +428,7 @@ Then in `package.json`, add the following lines to `scripts`: ```diff "scripts": { + "build-css": "node-sass src/ -o src/", -+ "watch-css": "npm run build-css && node-sass src/ -o src/ --watch", ++ "watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive", "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom",