1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/sass.md
Vítor Henrique 5edbf734fb
pages*: improve page descriptions (#12558)
* pages*: improve page descriptions

* ical: improve page description

* cockpit-desktop: remove unneeded word from page description

* nc: improve description wording

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-04-25 19:58:21 -03:00

668 B

sass

Convert SCSS or Sass files to CSS. More information: https://sass-lang.com/documentation/cli/dart-sass.

  • 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}}