joyent-portal/ui/Makefile

72 lines
1.8 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
2016-10-31 15:28:44 +02:00
SERVE := $(bindir)/http-server
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
.PHONY: install-embed-markdown-loader
install-embed-markdown-loader:
cd docs/webpack/embed-markdown-loader && yarn install --prefer-offline
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
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
.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
$(bindir)/start-storybook -p 8080
2016-10-31 16:40:54 +02:00
2016-10-24 17:52:46 +03:00
.PHONY: install-production
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
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
@rm -rf webpack/embed-markdown-loader/node_modules
.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
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 .