portfolio/Makefile

13 lines
160 B
Makefile

entrypoint=index.html
postbuild: build
node postbuild.js
build: node_modules
parcel build ${entrypoint}
node_modules:
npm install
clean:
git clean -xdf