mirror of
https://gitee.com/dromara/go-view.git
synced 2024-11-30 02:38:30 +08:00
20 lines
285 B
Makefile
20 lines
285 B
Makefile
.PHONY: dist test
|
|
default: help
|
|
dev:
|
|
npm run dev
|
|
|
|
build:
|
|
npm run build
|
|
|
|
lint:
|
|
npm run lint
|
|
|
|
new:
|
|
npm run new
|
|
|
|
|
|
help:
|
|
@echo " make dev 开发模式"
|
|
@echo " make build 编译模式"
|
|
@echo " make new 通过自动化流程创建代码"
|
|
@echo " make lint 格式校验"
|