Skip to content

Instantly share code, notes, and snippets.

@lil5
Created August 18, 2020 09:29
Show Gist options
  • Save lil5/10c1f07d5fd4ee52caf18dd7b96eeb14 to your computer and use it in GitHub Desktop.
Save lil5/10c1f07d5fd4ee52caf18dd7b96eeb14 to your computer and use it in GitHub Desktop.
Build SCSS
#!/bin/bash
for file in $(find . -path ./node_modules -prune -false -o -name "*.scss")
do npx sass ${file}:${file%.scss}.css;
echo $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment