-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sass-convert -R ./ -F scss -T sass | |
find . -name "*.scss" -type f -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Separated the original author's commands into two lines to be a little safer. Then had to account for subdirectories.