8000 feat(frontend): update sass compiler/toolchain by ewdurbin · Pull Request #1709 · python/pythondotorg · GitHub
[go: up one dir, main page]

Skip to content

feat(frontend): update sass compiler/toolchain #1709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix flags order in makefile commmand
  • Loading branch information
berinhard committed Apr 27, 2021
commit 2c5e550125b4ef960384d88c2d14ef51f93db6e2
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sass:
PATH=$(shell npm bin):$(shell echo $$PATH) sass -I static/vendor/compass -I static/vendor/susy static/sass

sass-watch:
PATH=$(shell npm bin):$(shell echo $$PATH) sass -I -w static/vendor/compass -I static/vendor/susy static/sass
PATH=$(shell npm bin):$(shell echo $$PATH) sass -w -I static/vendor/compass -I static/vendor/susy static/sass
0