mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
sidebarDepth | sidebar | title |
---|---|---|
3 | auto | CLI命令 |
init
初始化一个fes的项目模板,使用最新版本的fes-template
fes init [name]
dev
开发调试,启动本地服务
fes dev
参数
env
配置使用什么环境,对应着fes.config.js
中的env
fes dev --env=develop
build
编译打包
fes build
参数
env
配置使用什么环境,对应着fes.config.js
中的env
fes dev --env=prod
test:unit
单元测试
fes test:unit
参数
single-run
是否只执行一次,默认是watch
模式,文件更新后会执行一次测试
fes test:unit --single-run
coverage
是否进行覆盖测试
fes test:unit --coverage
其他参数
单元测试使用karma
来管理测试,支持karma
的所有参数,使用如下命令查看完整参数:
fes test:unit -h
route
编译路由,根据pages
下组件目录生成路由
fes update
components
编译公共组件,componets下的组件自动注入到全局组件
fes components