scratch-www/Makefile

49 lines
823 B
Makefile
Raw Normal View History

2015-09-02 15:08:58 -04:00
ESLINT=./node_modules/.bin/eslint
LIVE=./node_modules/.bin/live-server
WATCH=./node_modules/.bin/watch
WEBPACK=./node_modules/.bin/webpack
# ------------------------------------
build:
@make clean
@make static
@make webpack
clean:
rm -rf ./build/*.*
mkdir -p build
static:
cp -a ./static/. ./build/
webpack:
$(WEBPACK)
# ------------------------------------
test:
@make lint
lint:
2015-09-02 16:33:31 -04:00
$(ESLINT) ./*.js
$(ESLINT) ./src/*.jsx
$(ESLINT) ./src/mixins/*.jsx
$(ESLINT) ./src/views/**/*.jsx
$(ESLINT) ./src/components/**/*.jsx
2015-09-02 15:08:58 -04:00
# ------------------------------------
start:
@make watch
$(LIVE) ./build --port=8888 --wait=200 --no-browser
2015-09-02 15:08:58 -04:00
watch:
$(WEBPACK) -d --watch &
$(WATCH) "make static" ./static &
wait
# ------------------------------------
2015-09-02 16:33:31 -04:00
.PHONY: build clean static webpack test lint start watch