element/Makefile

47 lines
1.2 KiB
Makefile
Raw Normal View History

2016-10-20 06:35:12 +00:00
.PHONY: dist test
2016-07-27 06:15:02 +00:00
default: help
# build all theme
2016-09-22 05:53:46 +00:00
build-theme:
2016-09-06 03:51:08 +00:00
npm run build:theme
2016-07-27 06:15:02 +00:00
install:
2016-10-15 07:39:05 +00:00
npm install
2016-09-09 05:49:20 +00:00
install-cn:
2016-10-15 07:39:05 +00:00
npm install --registry=http://registry.npm.taobao.org
2016-07-27 06:15:02 +00:00
2016-09-06 03:51:08 +00:00
dev:
2016-07-27 06:15:02 +00:00
npm run dev
2016-11-14 06:10:58 +00:00
play:
npm run dev:play
2016-07-27 06:15:02 +00:00
new:
2016-10-17 07:57:50 +00:00
node build/bin/new.js $(filter-out $@,$(MAKECMDGOALS))
2016-07-27 06:15:02 +00:00
new-lang:
node build/bin/new-lang.js $(filter-out $@,$(MAKECMDGOALS))
2016-09-06 17:15:39 +00:00
dist: install
2016-07-27 06:15:02 +00:00
npm run dist
2016-09-18 07:28:39 +00:00
deploy:
2016-07-27 06:15:02 +00:00
@npm run deploy
pub:
2016-11-16 11:16:34 +00:00
npm run pub
2016-07-27 06:15:02 +00:00
2016-10-20 00:50:40 +00:00
test:
npm run test:watch
2016-07-27 06:15:02 +00: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'"