@zippybee/cli
v1.0.18
Published
zippybee-CLI is a command-line interface tool developed based on Vite 5.0. It allows for rapid setup of project architectures supporting Vue 3, React, and more, out-of-the-box without requiring extensive configuration.
Downloads
118
Readme
zippybee-CLI
zippybee-CLI is a command-line interface tool developed based on Vite 5.0. It allows for rapid setup of project architectures supporting Vue 3, React, and more, out-of-the-box without requiring extensive configuration.
- 💡 支持项目多环境配置
- 🛠️ 构建打包的依赖分析
- 📦 低版本浏览器的自动兼容
- 🔩 构建产物的模块的 CDN 引入
- 🔑 更多模块持续更新
Installation
Using npm
npm i @zippybee/cli -g
Using pnpm
pnpm install @zippybee/cli -g
命令行界面 {#command-line-interface}
开发服务器 {#dev-server}
zippy
{#vite}
在当前目录下启动 Vite 开发服务器。
使用 {#usage}
vite [root]
选项 {#options}
| 选项 | |
| --------------------------- | ------------------------- |
| -p <port>
| 指定端口 (number
) |
| -e <env>
| 自定义环境变量 (string
) |
| -n, --NODE_ENV <NODE_ENV>
| 设置环境模式 (string
) |
| -h, --help
| 显示可用的 CLI 选项 |
| -v, --version
| 显示版本号 |
构建 {#build}
zippy build
{#vite-build}
构建生产版本。
使用 {#usage-1}
zippy build [root]
选项 {#options-1}
| 选项 | |
| ------------------- | ----------------------------------------- |
| -t <target>
| 编译目标(默认为:"modules"
)(string
) |
| -e <env>
| 自定义环境变量 (string
) |
| -o <dir>
| 输出目录(默认为:dist
)(string
) |
| -n, --mode <mode>
| 设置环境模式 (string
) |
| -h, --help
| 显示可用的 CLI 选项 |
zippy preview
{#vite-preview}
本地预览构建产物。不要将其用作生产服务器,因为它不是为此而设计的。
使用 {#usage-3}
zippy preview [root]
选项 {#options-3}
| 选项 | |
| --------------- | -------------------------- | --- | -------- |
| --open [path]
| 启动时打开浏览器 (boolean | | string
) |
| -p <port>
| 指定端口 (number
) |
Custom Configuration
Create a zippy.config.mjs
configuration file in the root directory supporting TypeScript (ts) and ECMAScript modules (mjs). The CLI only supports configuration files following ECMAScript standards due to its reliance on Vite 5.0, which will eventually deprecate CommonJS (cjs) APIs.
please run npx zippy init
create zippy.config.mjs
file
Configuration Options
| Option | Types | Default | Description |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ |
| vueIsJsx
| bool
| false
| Enable JSX support in Vue mode |
| analyzeDependencies
| object
| | Dependency analysis configuration |
| | enable:bool
| false
| - enable
: Enable dependency analysis |
| | open:bool
| false
| - open
: Automatically open the analysis panel |
| polyfill
| object
| | Configuration for compatibility with older browsers |
| | enable:bool
| false
| - enable
: Enable compatibility with older versions |
| | targets:string[]
| ['ie>=11']
| - targets
: Target browser versions |
| html_plugin
| object
| | HTML injection configuration |
| 插件文档地址 | enable:bool
| false
| - enable
: Enable HTML injection |
| | template:string
| index.html
| - template
: HTML template entry |
| | injectData:object
| {}
| - injectData
: Data to be injected |
| | config
| {} | |
| | config.commonfileName
| string
| Common Profile Name |
| | config.ignorefileName
| string
| local file name |
| package_cdn
| object
| | Module CDN import |
| | modules:string[] | Module[]
| []
| - modules
: Modules to import |
| | cdnUrl:string
| ""
| - cdnUrl
: CDN address for imported modules |
| isAutoComponent
| object
| {}
| Automatic on-demand import of component libraries |
| 文档地址 | dts:bool
| false
| Do I need to generate typescript declaration files |
| | dirs:string[]
| []
| Folders for automatic component import |
| | resolvers:ComponentResolver | ComponentResolver[]
| []
| Third-party Component Library |
| | resolvers:说明 | | 可从@zipplybee/cli 引入 示例: import {AntDesignVueResolver} from "@zippubee/cli/resolves" 支持该插件的所有 resolves 基于该插件二次开发维护 |
| custom_vite_config
| ({mode,env,isPreview,isSSR})=>UserConfig | Promise<UserConfig>
| ()=>{}
| Custom Vite configuration |
| | vite->UserConfig
| | - Integrates the Vite UserConfig |
简易配置示例
import { CustomConfigProps } from '@zippybee/cli';
import { AntDesignVueResolver } from '@zippybee/cli/resolves';
const config: CustomConfigProps = {
//vue 是否开启jsx支持 默认不开启
vueIsJsx: false,
// 是否分析依赖包大小
analyzeDependencies: {
// 是否开启
enable: false,
// 是否默认打开浏览器
open: false,
},
// 是否开启低版本浏览器兼容
polyfill: {
// 是否开启
enable: false,
// 是否默认打开浏览器
targets: ['ie >= 11'],
},
html_plugin: {
enable: false,
template: 'index.html',
injectData: {
title: 'Zippy Vite',
},
},
package_cdn: {
modules: ['vue'], //vue将不参与构建 直接cdn引入
cdnUrl: 'https://cdn.jsdelivr.net/npm/{name}@{version}/{path}', //插件默认从jsdelivr引入 可以自行更换
},
isAutoComponent: {
// 所有配置与插件https://github.com/unplugin/unplugin-vue-components/blob/main/README.md保持一致 所有resolvers 可从@zippybee/cli/resolves 也与unplugin-vue-components保持一致
dts: false,
dirs: [],
resolvers: [AntDesignVueResolver({ importStyle: false })],
},
// 其他自定义vite配置
custom_vite_config: () => {
return {};
},
};
export default config;
Migration from existing projects
基于 cli 内置了一些插件 从原有的项目迁移到@zippybee/cli 您需要操作以下几个步骤
- 新建 zippy.config.mjs 与原来 vite.config.ts|vite.config.js 的融合
插件内置插件
Vuejsx vuejsx 的支持 配置为 true 即可
rollup-plugin-visualizer 构建依赖分析 根据 Configuration 配置即可 自动开启
polyfill 打包构建添加浏览器兼容
html_plugin 类似与 webpack-html-plugin 模板注入 Configuration 配置 true 则自动会往模板注入
<%- injectScript %>
ejs 变量您也可以在injectData
覆盖它1.injectScript
开启 html_plugin 时 依赖环境变量 同时会注入环境变量信息 挂载 window 上 供全局使用
示例:package.json
"script":{ "dev":"zippy server -e dev" } // 如果开去html_plugin 则会干下面几件事情 //1.会读取config文件夹下 对应环境变量的json文件 npm run dev //则自动读取config/dev.json 环境变量请与文件名保持一致 //如在html_plugin Configuration 配置config 会有commonfileName ignorefileName 进行合并 //内部工作流程 //comm.json merge dev.json merge ignore.json //ignore.json 具有最高配置权限 (一般用于多人协作 ,本地开发 不用于提交Git的配置文件)
package_cdn 构建第三方包时自动引用 cdn 版本 例如:zippyer.config.ts
package_cdn:{ modules:['vue'] }, //构建时将以cdn的引入vue 则不参与实际打包 cdn地址 https://cdn.jsdelivr.net/npm/{name}@{version}/{path} //您也可以按照此格式配置cdnUrl地址
isAutoComponent vue 开发时自动引入组件 省去 import 示例:zippy.config.ts
import { AntDesignVueResolver } from '@zippybee/cli/resolves'; isAutoComponent:{ dts:false, //ts开发时 开启 自动注入引入组件的声明文件 dirs:[],//需要自动导入组件的文件夹名 例如 src/components resolvers:[AntDesignVueResolver({ importstyle:false })],//第三方UI框架的引入模块 } //@zippybee/cli/resolves 内置第三方UI模块加载器 具体支持第三方UI框架加载详见:https://github.com/unplugin/unplugin-vue-components/blob/main/README.md
基于 cli 的拓展性 业务的复杂多样性 cli 提供了 custom_vite_config 接口 用户特定的 vite 配置 该接口完全继承 vite.config.js or vite.config.ts 您甚至可以不做改动 直接将 vite.config 直接粘贴与此 就可以运行项目 但是不建议这么做
custom_vite_config:({mode,command,env,isSsrBuild,isPreview})=>vite.config
由于 cli 采用 es 规范开发 vite 在后续版本也都采用 es 规范 废弃 cjs node Api 相关配置文件 不再支持 cjs 规范 请使用 es 规范
License
This project is licensed under the [License Name] - see the LICENSE file for details.
This Markdown document outlines the zippybee-CLI tool, including installation, usage, CLI commands, custom configuration options in a tabular format, guidelines for contributing, and licensing information. Adjust the placeholders like [License Name]
, [link-to-issues]
, and [link-to-license-file]
with appropriate details.