2016-10-24 17:52:46 +03:00
|
|
|
.PHONY: install
|
|
|
|
install:
|
2016-10-24 18:55:06 +03:00
|
|
|
yarn install --prefer-offline
|
2016-10-24 17:52:46 +03:00
|
|
|
|
|
|
|
.PHONY: install-production
|
|
|
|
install-production:
|
2016-10-24 18:55:06 +03:00
|
|
|
yarn install --production --pure-lockfile --prefer-offline
|
2016-10-24 17:52:46 +03:00
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf node_modules
|
|
|
|
|
2016-10-17 19:56:01 +03:00
|
|
|
.PHONY: test
|
|
|
|
test:
|
2016-10-27 18:01:32 +03:00
|
|
|
$(shell yarn bin)/ava $(TEST_ARGS)
|
2016-10-24 17:52:46 +03:00
|
|
|
|
|
|
|
.PHONY: start
|
|
|
|
start:
|
2016-10-27 18:01:32 +03:00
|
|
|
yarn run start
|
2016-10-25 14:05:29 +03:00
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
2016-10-27 18:01:32 +03:00
|
|
|
@$(shell yarn bin)/eslint src
|