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
|
|
|
|
2016-10-27 18:01:32 +03:00
|
|
|
bindir := $(shell yarn bin)
|
|
|
|
AVA := $(bindir)/ava
|
|
|
|
NYC := $(bindir)/nyc
|
2016-10-31 15:28:44 +02:00
|
|
|
SERVE := $(bindir)/http-server
|
2016-10-27 18:01:32 +03:00
|
|
|
|
2016-10-24 14:43:32 +03:00
|
|
|
.PHONY: test
|
|
|
|
test:
|
2016-12-06 13:50:24 +02:00
|
|
|
BABEL_DISABLE_CACHE=1 NODE_ENV=test $(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
|
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-12-06 13:50:24 +02:00
|
|
|
BABEL_DISABLE_CACHE=1 NODE_ENV=test $(NYC) $(AVA) test/*.js -t | $(XUNIT) $(XUNIT_OUTPUT).xml
|
2016-10-31 14:02:32 +02:00
|
|
|
|
2016-10-28 18:00:42 +03:00
|
|
|
.PHONY: install-embed-markdown-loader
|
|
|
|
install-embed-markdown-loader:
|
2016-12-12 12:09:22 +02:00
|
|
|
cd docs/webpack/embed-markdown-loader && yarn install --prefer-offline
|
2016-10-28 18:00:42 +03:00
|
|
|
|
2016-12-06 13:50:24 +02:00
|
|
|
.PHONY: install-docs
|
|
|
|
install-docs:
|
|
|
|
cd docs && yarn install --prefer-offline
|
|
|
|
|
2016-10-24 17:52:46 +03:00
|
|
|
.PHONY: install
|
2016-10-28 18:00:42 +03:00
|
|
|
install: install-embed-markdown-loader
|
2016-10-24 18:55:06 +03:00
|
|
|
yarn install --prefer-offline
|
2016-10-24 17:52:46 +03:00
|
|
|
|
2016-10-28 18:00:42 +03:00
|
|
|
.PHONY: start
|
|
|
|
start:
|
2016-11-01 17:30:28 +02:00
|
|
|
$(bindir)/st -p $(PORT) -H 0.0.0.0 -d static --no-dot -i index.html
|
2016-10-31 16:40:54 +02:00
|
|
|
|
2016-10-24 17:52:46 +03:00
|
|
|
.PHONY: install-production
|
2016-11-01 16:53:24 +02:00
|
|
|
install-production: compile clean
|
|
|
|
yarn install --production --pure-lockfile --prefer-offline
|
2016-10-24 17:52:46 +03:00
|
|
|
|
2016-10-31 15:28:44 +02:00
|
|
|
.PHONY: compile
|
|
|
|
compile: install
|
2016-12-08 14:47:09 +02:00
|
|
|
$(bindir)/babel src --out-dir dist --source-maps inline
|
2016-10-31 15:28:44 +02: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 17:52:46 +03:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf node_modules
|
2016-11-01 15:57:34 +02:00
|
|
|
@rm -rf webpack/embed-markdown-loader/node_modules
|
2016-10-25 14:05:29 +03:00
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
2016-10-31 16:17:08 +02:00
|
|
|
$(bindir)/eslint .
|
2016-12-12 01:54:13 +02:00
|
|
|
# -$(bindir)/stylelint './src/components/**/*.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
|