Skip to content

Instantly share code, notes, and snippets.

@tanduong
Forked from pedrogpimenta/convert sass to scss
Created October 19, 2016 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanduong/edc36e9f4c8787df182b57d02adaeb05 to your computer and use it in GitHub Desktop.
Save tanduong/edc36e9f4c8787df182b57d02adaeb05 to your computer and use it in GitHub Desktop.
Convert SASS to SCSS and delete .sass files (applies to all files in current folder)
sass-convert -R ./ -F sass -T scss && rm *.sass
@tanduong
Copy link
Author

sass-convert -R ./ -F sass -T scss && find . -type f -name '*.sass' -delete

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment