fcc-cli
v1.0.8
Published
fly cli tool to create custom components library
Downloads
4
Readme
fcc-cli(fly-custom-component)
飞速平台自定义组件cli工具
下载安装
全局安装,方便使用
npm i fcc-cli -g
使用
- new 命令,新建Angular基础项目,项目名称为: fly-custom-component, 同时在项目下新建名为first的library,也就是要开发的组件库
$fcc-cli new first
- 项目初始化后,需要下载npm依赖包
$npm i
- gl 命令,新增组件库,如新增一个名为second的组件库
$fcc-cli gl second
- gc 命令,新增组件,如新增一个名为nz-button的组件
$fcc-cli gc nz-button
- deploy 命令,打包、压缩、上传组件库,注意⚠️:组件库名要正确,不支持同时上传多个组件库
$fcc-cli deploy first