aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 99aef3d..d428258 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
all:
make config
make js
+ make css
make hugo
config:
@@ -12,6 +13,12 @@ watch:
js:
deno bundle --no-check --config tsconfig.json static/js/index.ts static/js/index.js
+ mkdir -p assets/js
+ cp static/js/index.js assets/js
+
+css:
+ mkdir -p assets/css
+ cp static/css/* assets/css
hugo:
rm -rf public