Skip to content

Commit

Permalink
Fix css watch command
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly committed May 7, 2017
1 parent 953c09f commit 0fdf68b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/styles/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/styles/_fonts.scss
Expand Up @@ -26,4 +26,4 @@
src: url('../fonts/OpenSans-BoldItalic-webfont.eot?#iefix') format('eot'), url('../fonts/OpenSans-BoldItalic-webfont.woff') format('woff'), url('../fonts/OpenSans-BoldItalic-webfont.otf') format('opentype');
font-weight: bold;
font-style: italic;
}
}
2 changes: 1 addition & 1 deletion assets/styles/_mixins.scss
Expand Up @@ -18,4 +18,4 @@
@mixin align-items($value){
-webkit-align-items: $value;
align-items: $value;
}
}
1 change: 0 additions & 1 deletion assets/styles/style.scss
Expand Up @@ -387,4 +387,3 @@ code {
color: white;
padding-top: 3px;
}

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -24,8 +24,8 @@
"test": "standard && istanbul cover _mocha",
"lint": "standard",
"dev": "node ./scripts/dev.js & npm run css-watch",
"css": "node-sass --output-style compressed assets/styles/style.scss > app/styles/style.css",
"css-watch": "node-sass --watch --output-style compressed assets/styles/style.scss > app/styles/style.css"
"css": "node-sass --output-style compressed -o app/styles assets/styles/style.scss",
"css-watch": "node-sass -wr --output-style compressed -o app/styles assets/styles/style.scss"
},
"main": "./index.js",
"bin": {
Expand Down

0 comments on commit 0fdf68b

Please sign in to comment.