13 lines
159 B
Makefile
13 lines
159 B
Makefile
.PHONY: build
|
|
|
|
default: build
|
|
|
|
clean:
|
|
rm -fr web/build
|
|
|
|
node_modules: package.json package-lock.json
|
|
npm install
|
|
|
|
build: node_modules
|
|
npx encore production
|