portfolio/Makefile

13 lines
164 B
Makefile

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