mirror of
https://github.com/youzan/vant.git
synced 2026-04-21 01:02:04 +08:00
19 lines
298 B
Makefile
19 lines
298 B
Makefile
.PHONY: test
|
|
usage = "\
|
|
Usage: make <option> \n\n\
|
|
init componentname 初始化一个新组件,请忽视makefile的报错 \n\n\
|
|
\n"
|
|
|
|
|
|
default:
|
|
@echo $(usage)
|
|
|
|
init:
|
|
node build/bin/init.js $(filter-out $@,$(MAKECMDGOALS))
|
|
|
|
dev:
|
|
npm run dev
|
|
|
|
test:
|
|
npm run test
|