snippetbashTip
sass — Convert SCSS or Sass files to CSS. More information: <https://sass-lang.com/documentation/cli/dart-s
Viewed 0 times
scsscommandfilesconvertclicsssass
Problem
How to use the
sass command: Convert SCSS or Sass files to CSS. More information: <https://sass-lang.com/documentation/cli/dart-sass/>.Solution
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}}Code Snippets
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}}Context
tldr-pages: common/sass
Revisions (0)
No revisions yet.