From 71bf38c94e69a8979f3a0f6c83b1fb4bcc92a7d2 Mon Sep 17 00:00:00 2001 From: Aarin Smith Date: Tue, 5 Jan 2016 09:49:09 -0800 Subject: [PATCH] Updated sass scss file extensions. Corrected description for sass command with no output file. --- pages/common/sass.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/sass.md b/pages/common/sass.md index a4d349b32..cd6454fef 100644 --- a/pages/common/sass.md +++ b/pages/common/sass.md @@ -3,18 +3,18 @@ > Converts SCSS or Sass files to CSS > .scss and .sass can be used interchangeably in below examples depending on your preference -- Immediately convert scss file and output css with same filename +- Output converted file to stdout -`sass {{inputfile}}.scss` +`sass {{inputfile.(scss|sass)}}` - Immediately convert SCSS or Sass file to CSS to specified output file -`sass {{inputfile}}.scss {{outputfile}}.css` +`sass {{inputfile.(scss|sass)}} {{outputfile.css}}` - Watch SCSS or Sass file for changes and output or update CSS file with same filename -`sass --watch {{inputfile}}.scss` +`sass --watch {{inputfile.(scss|sass)}}` - Watch SCSS or Sass file for changes and output or update CSS file with specified filename -`sass --watch {{inputfile}}.scss:{{outputfile}}.css` \ No newline at end of file +`sass --watch {{inputfile.(scss|sass)}}:{{outputfile.css}}` \ No newline at end of file