forked from mirrors/hugo-tufte
affe4f6c81
Removing vendor version of normalise.scss and replacing it with cdn version
16 lines
No EOL
366 B
Makefile
16 lines
No EOL
366 B
Makefile
# VARIABLE
|
|
SCSS_DIR := "assets/scss/vendor"
|
|
|
|
# LIST OF THE COMMANDS
|
|
help:
|
|
@echo "Commands available:"
|
|
@echo "- 'rebuild': rebuild the public directory in the 'exampleSite'"
|
|
|
|
# COMMANDS
|
|
rebuild:
|
|
@rm -rf exampleSite/public
|
|
@cd exampleSite && hugo && cd ..
|
|
@echo "SITE REBUILT"
|
|
|
|
chroma:
|
|
hugo gen chromastyles --style=monokai > assets/scss/syntax/syntax-dark.scss
|