1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sass.md

12 lines
359 B
Markdown
Raw Normal View History

2016-01-04 10:29:19 -08:00
# Sass
> Converts SCSS or Sass files to CSS
> .scss and .sass can be used interchangeably in below examples depending on your preferred syntax
- Immediately one time convert SCSS or Sass file to CSS
`sass {{inputfile}}.scss:{{outputfile}}.css`
- Watch SCSS or Sass file for changes and update CSS file
`sass --watch {{inputfile}}.scss:{{outputfile}}.css`