Skip to content

Commit 2cbdc43

Browse files
mklemmerandycoulman
authored andcommitted
Fixed missing flag in first preprocess command (facebook#1687)
1 parent 695d7fe commit 2cbdc43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-scripts/template/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Then in `package.json`, add the following lines to `scripts`:
428428
```diff
429429
"scripts": {
430430
+ "build-css": "node-sass src/ -o src/",
431-
+ "watch-css": "npm run build-css && node-sass src/ -o src/ --watch",
431+
+ "watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
432432
"start": "react-scripts start",
433433
"build": "react-scripts build",
434434
"test": "react-scripts test --env=jsdom",

0 commit comments

Comments
 (0)