mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-12-26 18:32:41 +03:00
80de84361b
lowercase heading, and reword some descriptions for clarity and consistency
20 lines
596 B
Markdown
20 lines
596 B
Markdown
# sass
|
|
|
|
> Converts SCSS or Sass files to CSS.
|
|
|
|
- Convert a SCSS or Sass file to CSS and print out the result:
|
|
|
|
`sass {{inputfile.scss|inputfile.sass}}`
|
|
|
|
- Convert a SCSS or Sass file to CSS and save the result to a file:
|
|
|
|
`sass {{inputfile.scss|inputfile.sass}} {{outputfile.css}}`
|
|
|
|
- Watch a SCSS or Sass file for changes and output or update the CSS file with same filename:
|
|
|
|
`sass --watch {{inputfile.scss|inputfile.sass}}`
|
|
|
|
- Watch a SCSS or Sass file for changes and output or update the CSS file with the given filename:
|
|
|
|
`sass --watch {{inputfile.scss|inputfile.sass}}:{{outputfile.css}}`
|