8 lines
130 B
Makefile
8 lines
130 B
Makefile
|
.PHONY: install
|
||
|
install:
|
||
|
yarn install
|
||
|
|
||
|
.PHONY: install-production
|
||
|
install-production:
|
||
|
yarn install --production --pure-lockfile
|