diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4c828bb --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: build + +install: + npm ci + +build: install + npm run build + +clean: + rm -rf ./build/ + +# vim: set ts=4 sw=4 autoindent noexpandtab: