joyent-portal/cloudapi-graphql/Makefile

24 lines
353 B
Makefile
Raw Normal View History

2016-10-24 17:52:46 +03:00
.PHONY: install
install:
yarn install --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: install-production
install-production:
yarn install --production --pure-lockfile --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: clean
clean:
@rm -rf node_modules
.PHONY: test
test:
$(shell yarn bin)/ava $(TEST_ARGS)
2016-10-24 17:52:46 +03:00
.PHONY: start
start:
yarn run start
.PHONY: lint
lint:
@$(shell yarn bin)/eslint src