Skip to content

Instantly share code, notes, and snippets.

@owenstrevor
Forked from pedrogpimenta/convert sass to scss
Last active May 29, 2016 21:20
Show Gist options
  • Save owenstrevor/0123ba7e54b51e7a6a7e22fda09cd4d8 to your computer and use it in GitHub Desktop.
Save owenstrevor/0123ba7e54b51e7a6a7e22fda09cd4d8 to your computer and use it in GitHub Desktop.
Convert SCSS to SASS and delete .scss files (applies to all files in current folder)
sass-convert -R ./ -F scss -T sass
find . -name "*.scss" -type f -delete
@owenstrevor
Copy link
Author

Separated the original author's commands into two lines to be a little safer. Then had to account for subdirectories.

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