1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/sass.md
2016-01-08 09:38:59 +01:00

19 lines
529 B
Markdown

# 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}}`