Forrest logo
back to context overview

sass

List of commands for sass:

  • sass:tldr:a1aea sass: Watch a SCSS or Sass file for changes and output or update the CSS file with the given filename.
    $ sass --watch ${select}:${outputfile-css}
    try on your machine
    explain this command
  • sass:tldr:a3250 sass: Convert a SCSS or Sass file to CSS and save the result to a file.
    $ sass ${select} ${outputfile-css}
    try on your machine
    explain this command
  • sass:tldr:d2942 sass: Watch a SCSS or Sass file for changes and output or update the CSS file with same filename.
    $ sass --watch ${select}
    try on your machine
    explain this command
  • sass:tldr:ff391 sass: Convert a SCSS or Sass file to CSS and print out the result.
    $ sass ${select}
    try on your machine
    explain this command
back to context overview