Skip to content

Instantly share code, notes, and snippets.

@lilrogalski
Last active February 19, 2018 14:18
Show Gist options
  • Save lilrogalski/d87fd48bdd82c382a4d54624a11c55e6 to your computer and use it in GitHub Desktop.
Save lilrogalski/d87fd48bdd82c382a4d54624a11c55e6 to your computer and use it in GitHub Desktop.
Convert all files in directory from SCSS to SASS, delete unused SCSS files
// convert all files from scss to sass syntax
sass-convert -R . -F scss -T sass
// delete all unnecessary *.scss files
find . -name "*.scss" -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment