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
|
2017-01-06 13:26:08 +02:00
|
|
|
NODE_ENV=development yarn install --prefer-offline
|
2016-10-24 17:52:46 +03:00
|
|
|
|
2016-10-28 18:00:42 +03:00
|
|
|
.PHONY: start
|
|
|
|
start:
|
2016-12-13 14:14:07 +02:00
|
|
|
# $(bindir)/st -p $(PORT) -H 0.0.0.0 -d static --no-dot -i index.html
|
2017-04-19 22:03:58 +03:00
|
|
|
$(bindir)/start-storybook -p 8080 -h 0.0.0.0
|
2016-10-31 16:40:54 +02:00
|
|
|
|
2016-10-24 17:52:46 +03:00
|
|
|
.PHONY: install-production
|
2017-01-26 14:12:57 +02:00
|
|
|
install-production: compile
|
2016-10-24 17:52:46 +03:00
|
|
|
|
2016-10-31 15:28:44 +02:00
|
|
|
.PHONY: compile
|
|
|
|
compile: install
|
2017-01-18 14:46:44 +02:00
|
|
|
mkdir -p dist
|
2017-01-18 16:58:54 +02:00
|
|
|
cp -R src/. dist/.
|
2017-03-01 20:57:50 +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:
|
2017-03-21 16:41:30 +02:00
|
|
|
docker build -t quay.io/yldio/joyent-dashboard-$(NAME):$(CIRCLE_BRANCH) .
|
2016-10-31 19:09:00 +02:00
|
|
|
|
|
|
|
.PHONY: push
|
2017-01-05 12:46:10 +02:00
|
|
|
push:
|
2016-10-31 19:09:00 +02:00
|
|
|
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:
|
2017-04-06 13:43:03 +03:00
|
|
|
$(bindir)/eslint . --cache
|
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)
|
2017-04-06 13:43:03 +03:00
|
|
|
-$(bindir)/eslint . --cache --format tap | $(XUNIT) $(XUNIT_OUTPUT)-lint.xml
|
2017-01-03 15:53:24 +02:00
|
|
|
|
|
|
|
.PHONY: publish
|
|
|
|
publish:
|
2017-01-03 17:46:20 +02:00
|
|
|
docker build --build-arg NPM_TOKEN=${NPM_TOKEN} --build-arg CIRCLE_BUILD_NUM=${CIRCLE_BUILD_NUM} -f Dockerfile.build .
|
2017-01-17 18:47:26 +02:00
|
|
|
|
|
|
|
.PHONY: licence-check
|
|
|
|
licence-check:
|
|
|
|
../node_modules/.bin/license-to-fail ../licence.js
|