Created
July 16, 2015 13:50
-
-
Save norm/271bf72f77ae9df0fd9e to your computer and use it in GitHub Desktop.
Minimum Viable Python-only automatic SASS compilation
This file contains 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
.PHONY: css | |
CSS=static/screen.css | |
css: $(CSS) | |
clean: | |
rm $(CSS) | |
$(CSS): static/%.css: sass/%.scss | |
python -mscss -t compressed -o $@ $< |
This file contains 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: watchmedo tricks-from tricks.yaml |
This file contains 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
watchdog==0.8.3 | |
pyscss==1.3.4 |
This file contains 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
from watchdog.tricks import ShellCommandTrick | |
class MakeTrick(ShellCommandTrick): | |
def __init__(self, target=None, patterns=None): | |
make_command='make -B %s' % target | |
super(MakeTrick, self).__init__( | |
shell_command=make_command, | |
patterns=patterns, | |
wait_for_process=True, | |
) |
This file contains 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
tricks: | |
- tricks.MakeTrick: | |
target: 'css' | |
patterns: ['*.scss'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment