Skip to content

Commit

Permalink
Fixed missing flag in first preprocess command (#1687)
Browse files Browse the repository at this point in the history
  • Loading branch information
mklemme authored and Timer committed Mar 4, 2017
1 parent 7a6a3c8 commit 290e619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 290e619

Please sign in to comment.