1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

Added page for Sass

This commit is contained in:
Aarin Smith 2016-01-04 10:29:19 -08:00
parent 4359692109
commit 99ad79e207

12
pages/common/sass.md Normal file
View file

@ -0,0 +1,12 @@
# 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`