mirror of
https://github.com/valitydev/swag-wallets.git
synced 2024-11-06 10:55:21 +00:00
17 lines
187 B
Makefile
17 lines
187 B
Makefile
|
all: build
|
||
|
|
||
|
.PHONY: install
|
||
|
install: node_modules
|
||
|
|
||
|
.PHONY: build
|
||
|
build: install
|
||
|
npm run build
|
||
|
|
||
|
.PHONY: start
|
||
|
start: install
|
||
|
npm start
|
||
|
|
||
|
node_modules: package.json
|
||
|
npm install
|
||
|
touch $@
|