diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..772f54e --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +# .PHONY: Declares phony targets, which are commands that don't produce a file with the same name. +.PHONY: install start build test clean + +# Install project dependencies +site: + @echo "🏗️ Building site ..." + npm install && npm run dev + +# Build the project for production +build: + npm run build + +# Run project tests +test: + npm run test +