From 99ad79e207f6508e05cbc496788fdbb6bf62c0d2 Mon Sep 17 00:00:00 2001 From: Aarin Smith Date: Mon, 4 Jan 2016 10:29:19 -0800 Subject: [PATCH] Added page for Sass --- pages/common/sass.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/common/sass.md diff --git a/pages/common/sass.md b/pages/common/sass.md new file mode 100644 index 000000000..71e49b95b --- /dev/null +++ b/pages/common/sass.md @@ -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` \ No newline at end of file