2016-10-31 14:02:32 +02:00
|
|
|
NAME := $(lastword $(subst /, ,$(CURDIR)))
|
|
|
|
|
|
|
|
bindir := $(shell yarn bin)
|
|
|
|
AVA := $(bindir)/ava
|
|
|
|
NYC := $(bindir)/nyc
|
|
|
|
|
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-31 14:02:32 +02:00
|
|
|
$(AVA) $(TEST_ARGS)
|
|
|
|
|
|
|
|
XUNIT_DIR := ${CIRCLE_TEST_REPORTS}/tap-xunit
|
|
|
|
XUNIT_ARGS := -t | $(bindir)/tap-xunit >> ${CIRCLE_TEST_REPORTS}/tap-xunit/xunit-$(NAME).xml
|
|
|
|
.PHONY: test-ci
|
|
|
|
test-ci:
|
|
|
|
mkdir -p $(XUNIT_DIR)
|
|
|
|
$(NYC) $(AVA) $(XUNIT_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
|