18 lines
243 B
Makefile
18 lines
243 B
Makefile
include ../tools/node-install.mk
|
|
|
|
.PHONY: test
|
|
test:
|
|
yarn run test
|
|
|
|
.PHONY: install
|
|
install:
|
|
yarn install
|
|
|
|
.PHONY: install-production
|
|
install-production:
|
|
yarn install --production --pure-lockfile
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -rf node_modules
|