joyent-portal/frontend/Makefile

32 lines
625 B
Makefile
Raw Normal View History

2016-10-24 17:52:46 +03:00
.PHONY: install
install:
yarn install --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: install-production
2016-10-24 18:31:05 +03:00
install-production: compile clean
yarn install --production --pure-lockfile --prefer-offline
2016-10-24 17:52:46 +03:00
.PHONY: clean
clean:
@rm -rf node_modules
bindir := $(shell yarn bin)
AVA := $(bindir)/ava
NYC := $(bindir)/nyc
2016-10-20 04:14:26 +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-20 04:14:26 +03:00
2016-10-20 15:36:24 +03:00
.PHONY: compile
compile: install
NODE_ENV=production ./node_modules/.bin/webpack --config webpack/index.js
2016-10-24 17:52:46 +03:00
2016-10-24 18:31:05 +03:00
.PHONY: start
start:
yarn run production
.PHONY: lint
lint:
@$(shell yarn bin)/eslint .