2016-10-24 17:52:46 +03:00
|
|
|
BACKEND = "../backend/static"
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
install:
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
.PHONY: install-production
|
|
|
|
install-production:
|
|
|
|
yarn install --production --pure-lockfile
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf node_modules
|
|
|
|
|
2016-10-20 04:14:26 +03:00
|
|
|
.PHONY: test
|
|
|
|
test:
|
2016-10-24 14:22:12 +03:00
|
|
|
npm run test
|
2016-10-20 04:14:26 +03:00
|
|
|
|
2016-10-20 15:36:24 +03:00
|
|
|
.PHONY: compile
|
|
|
|
compile: install
|
2016-10-20 16:08:28 +03:00
|
|
|
NODE_ENV=production ./node_modules/.bin/webpack --config webpack/index.js
|
2016-10-24 17:52:46 +03:00
|
|
|
|
|
|
|
# I'm not sure this is the best idea, let's see how this works out for us
|
|
|
|
# and then go with something better once we find pain points
|
|
|
|
.PHONY: copy
|
|
|
|
copy: compile
|
|
|
|
@cp -r static/* $(BACKEND)
|