element/Makefile

47 lines
1.2 KiB
Makefile
Raw Permalink Normal View History

2016-10-20 14:35:12 +08:00
.PHONY: dist test
2016-07-27 14:15:02 +08:00
default: help
# build all theme
2016-09-22 13:53:46 +08:00
build-theme:
2016-09-06 11:51:08 +08:00
npm run build:theme
2016-07-27 14:15:02 +08:00
install:
2016-10-15 15:39:05 +08:00
npm install
2016-09-09 13:49:20 +08:00
install-cn:
2016-10-15 15:39:05 +08:00
npm install --registry=http://registry.npm.taobao.org
2016-07-27 14:15:02 +08:00
2016-09-06 11:51:08 +08:00
dev:
2016-07-27 14:15:02 +08:00
npm run dev
2016-11-14 14:10:58 +08:00
play:
npm run dev:play
2016-07-27 14:15:02 +08:00
new:
2016-10-17 15:57:50 +08:00
node build/bin/new.js $(filter-out $@,$(MAKECMDGOALS))
2016-07-27 14:15:02 +08:00
new-lang:
node build/bin/new-lang.js $(filter-out $@,$(MAKECMDGOALS))
2016-09-07 01:15:39 +08:00
dist: install
2016-07-27 14:15:02 +08:00
npm run dist
2016-09-18 15:28:39 +08:00
deploy:
2016-07-27 14:15:02 +08:00
@npm run deploy
pub:
2016-11-16 19:16:34 +08:00
npm run pub
2016-07-27 14:15:02 +08:00
2016-10-20 08:50:40 +08:00
test:
npm run test:watch
2016-07-27 14:15:02 +08:00
help:
@echo " \033[35mmake\033[0m \033[1m命令使用说明\033[0m"
@echo " \033[35mmake install\033[0m\t\033[0m\t\033[0m\t\033[0m\t--- 安装依赖"
@echo " \033[35mmake new <component-name> [中文名]\033[0m\t--- 创建新组件 package. 例如 'make new button 按钮'"
@echo " \033[35mmake dev\033[0m\t\033[0m\t\033[0m\t\033[0m\t--- 开发模式"
@echo " \033[35mmake dist\033[0m\t\033[0m\t\033[0m\t\033[0m\t--- 编译项目,生成目标文件"
@echo " \033[35mmake deploy\033[0m\t\033[0m\t\033[0m\t\033[0m\t--- 部署 demo"
@echo " \033[35mmake pub\033[0m\t\033[0m\t\033[0m\t\033[0m\t--- 发布到 npm 上"
@echo " \033[35mmake new-lang <lang>\033[0m\t\033[0m\t\033[0m\t--- 为网站添加新语言. 例如 'make new-lang fr'"