joyent-portal/ui/Makefile

44 lines
1.1 KiB
Makefile
Raw Normal View History

2016-10-31 14:02:32 +02:00
NAME := $(lastword $(subst /, ,$(CURDIR)))
2016-10-28 18:50:05 +03:00
PORT=8080
2016-10-31 14:02:32 +02:00
bindir := $(shell yarn bin)
AVA := $(bindir)/ava
NYC := $(bindir)/nyc
ST := $(bindir)/st
2016-10-24 14:43:32 +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-24 17:52:46 +03:00
2016-10-31 14:02:32 +02:00
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)
BABEL_DISABLE_CACHE=1 NODE_ENV=test CONFIG=$(shell pwd)/webpack/index.js $(NYC) $(AVA) test/*.js $(XUNIT_ARGS)
.PHONY: install-embed-markdown-loader
install-embed-markdown-loader:
cd webpack/embed-markdown-loader
yarn install --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: install
install: install-embed-markdown-loader
yarn install --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: start
start:
2016-10-28 18:50:05 +03:00
$(ST) -p $(PORT) -d src/ --no-dot -a 7200000
2016-10-24 17:52:46 +03:00
.PHONY: install-production
install-production: install-embed-markdown-loader
yarn install --pure-lockfile --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: clean
clean:
@rm -rf node_modules
.PHONY: lint
lint:
@$(shell yarn bin)/eslint .