joyent-portal/frontend/Makefile

47 lines
1.1 KiB
Makefile
Raw Normal View History

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:
yarn install --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: install-production
2016-10-24 18:31:05 +03:00
install-production: compile clean
yarn install --production --pure-lockfile --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: clean
clean:
@rm -rf node_modules
2016-10-20 04:14:26 +03:00
.PHONY: test
test:
BABEL_DISABLE_CACHE=1 NODE_ENV=test CONFIG=$(shell pwd)/webpack/index.js $(NYC) $(AVA) test/*.js $(TEST_ARGS)
2016-10-20 04:14:26 +03:00
2016-10-31 14:02:32 +02:00
XUNIT_DIR := ${CIRCLE_TEST_REPORTS}/tap-xunit
2016-10-31 16:17:08 +02:00
XUNIT := $(bindir)/tap-xunit
XUNIT_OUTPUT := >> ${CIRCLE_TEST_REPORTS}/tap-xunit/xunit-$(NAME)
2016-10-31 14:02:32 +02:00
.PHONY: test-ci
test-ci:
mkdir -p $(XUNIT_DIR)
2016-10-31 16:17:08 +02:00
BABEL_DISABLE_CACHE=1 NODE_ENV=test CONFIG=$(shell pwd)/webpack/index.js $(NYC) $(AVA) test/*.js -t | $(XUNIT) $(XUNIT_OUTPUT).xml
2016-10-31 14:02:32 +02:00
2016-10-20 15:36:24 +03:00
.PHONY: compile
compile: install
NODE_ENV=production ./node_modules/.bin/webpack --config webpack/index.js
2016-10-24 17:52:46 +03:00
2016-10-24 18:31:05 +03:00
.PHONY: start
start:
2016-10-31 15:28:44 +02:00
node server
.PHONY: lint
lint:
2016-10-31 16:17:08 +02:00
$(bindir)/eslint .
.PHONY: lint-ci
lint-ci:
mkdir -p $(XUNIT_DIR)
-$(bindir)/eslint . --format tap | $(XUNIT) $(XUNIT_OUTPUT)-lint.xml