diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8e8b5a --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +all: css build + +build: + npx sapper export + +serve: css build + npx serve __sapper__/export + +css: + npx stylus static/main.styl --out static/ + +clean: + rm -rf '__sapper__/'