From 075e729865439f81d931950c4ebd3b03494edfe0 Mon Sep 17 00:00:00 2001 From: Alessandro Burato Date: Wed, 15 Feb 2017 14:15:10 +0100 Subject: [PATCH] add --recursive to sass watch script (#1564) --- 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 715b8d06f74..99dc32f875a 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -419,7 +419,7 @@ Then we can change `start` and `build` scripts to include the CSS preprocessor c ```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", + "start-js": "react-scripts start",