diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..35c0b2f --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: all install format build test + +all: install format build test + +install: + npm install + +format: + npm run format + +build: + npm run build + +test: + npm run test-coverage