Merge pull request #586 from aarinsmith/master

Add Sass
waldyrious/alt-syntax
Ruben Vereecken 2016-01-05 21:38:47 +01:00
commit 6b20b2b4aa
1 changed files with 19 additions and 0 deletions

19
pages/common/sass.md Normal file
View File

@ -0,0 +1,19 @@
# Sass
> Converts SCSS or Sass files to CSS
- Output converted file to stdout
`sass {{inputfile.(scss|sass)}}`
- Immediately convert SCSS or Sass file to CSS to specified output file
`sass {{inputfile.(scss|sass)}} {{outputfile.css}}`
- Watch SCSS or Sass file for changes and output or update CSS file with same filename
`sass --watch {{inputfile.(scss|sass)}}`
- Watch SCSS or Sass file for changes and output or update CSS file with specified filename
`sass --watch {{inputfile.(scss|sass)}}:{{outputfile.css}}`