commento/frontend/Makefile

14 lines
182 B
Makefile
Raw Normal View History

2018-04-16 21:59:32 +08:00
BUILD_DIR = build
GULP = node_modules/.bin/gulp
2018-04-16 21:59:32 +08:00
devel:
yarn install
$(GULP) devel
2018-04-16 21:59:32 +08:00
prod:
yarn install
$(GULP) prod
2018-04-16 21:59:32 +08:00
clean:
-rm -rf $(BUILD_DIR);