From 02faf9ca69f7484b254b82fc37559d702cddbf40 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Sun, 7 Feb 2021 12:26:49 +0100 Subject: [PATCH] Makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile 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__/'