joyent-portal/frontend/Makefile

71 lines
1.5 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-12-06 12:12:25 +02:00
UI := $(shell pwd)/../ui
2016-10-31 14:02:32 +02:00
.PHONY: install-production
install-production: compile
yarn install --production --no-lockfile
2016-10-24 17:52:46 +03:00
.PHONY: install
install:
NODE_ENV=development yarn install --no-lockfile
2016-10-24 17:52:46 +03:00
.PHONY: clean
clean:
@rm -rf node_modules
2016-12-06 12:12:25 +02:00
ui:
2017-01-03 19:11:18 +02:00
ifeq ($(BUILD),production)
else
2016-12-06 12:12:25 +02:00
$(MAKE) compile -C $(UI)
2017-01-03 19:11:18 +02:00
endif
2016-12-06 12:12:25 +02:00
2016-10-20 04:14:26 +03:00
.PHONY: test
2016-12-06 12:12:25 +02:00
test: ui
2016-12-20 13:29:54 +02:00
NODE_ENV=test BABEL_DISABLE_CACHE=1 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
2016-12-06 12:12:25 +02:00
test-ci: ui
2016-10-31 14:02:32 +02:00
mkdir -p $(XUNIT_DIR)
2016-12-20 13:29:54 +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
2016-12-06 12:12:25 +02:00
compile: ui install
2017-01-03 19:11:18 +02:00
ifeq ($(BUILD),production)
2016-12-06 12:12:25 +02:00
NODE_ENV=production $(bindir)/webpack --config webpack/index.js
2017-01-03 19:11:18 +02:00
else
$(bindir)/webpack --config webpack/index.js
endif
2016-10-24 17:52:46 +03:00
2016-10-31 19:09:00 +02:00
.PHONY: build
build:
docker build -t quay.io/yldio/joyent-dashboard-$(NAME) .
.PHONY: push
push:
docker push quay.io/yldio/joyent-dashboard-$(NAME)
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 .
2017-02-06 18:11:14 +02:00
# $(bindir)/stylelint './src/**/*.js'
2016-10-31 16:17:08 +02:00
.PHONY: lint-ci
lint-ci:
mkdir -p $(XUNIT_DIR)
-$(bindir)/eslint . --format tap | $(XUNIT) $(XUNIT_OUTPUT)-lint.xml
2017-01-17 18:47:26 +02:00
.PHONY: licence-check
licence-check:
../node_modules/.bin/license-to-fail ../licence.js