create-unibest 2.5.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md DELETED
@@ -1,37 +0,0 @@
1
-
2
- <h1 align="center">✨create unibest✨</h1>
3
-
4
- <p align="center">
5
- <a href="https://www.npmjs.com/package/create-unibest"><img src="https://img.shields.io/npm/dm/create-unibest?colorA=363a4f&colorB=f5a97f&style=for-the-badge"></a>
6
- <a href="https://www.npmjs.com/package/create-unibest"><img src="https://img.shields.io/npm/v/create-unibest?colorA=363a4f&colorB=a6da95&style=for-the-badge"></a>
7
- </p>
8
-
9
- <h2 align="center">
10
- <sub>>_ Easy to use create unibest</sub>
11
- </h2>
12
-
13
- ## 📖 介绍
14
-
15
- `create-unibest` 是一个用于快速创建 `unibest` 项目的轻量脚手架工具,它可以帮助你快速创建一个基于 `vite` + `vue3` + `TS` 的 `uni-app` 项目,同时提供了一些模板供你选择。
16
-
17
- ## 🚤 快速使用
18
-
19
- ```shell
20
- pnpm create unibest <项目名称> # 默认用 base 模板
21
- pnpm create unibest <项目名称> -t <模板名>
22
- ```
23
-
24
- `create unibest` 支持 `-t` 参数选择模板,目前已有 `7` 个模板,分别是 `base`、`tabbar`、`spa`、`demo`、`i18n`、`hbx-base`、`hbx-demo`。
25
-
26
- ```sh
27
- # VS Code 模板
28
- pnpm create unibest my-project # 默认用 base 模板
29
- pnpm create unibest my-project -t base # 基础模板(2025-06-21 开始已经合并了tabbar和spa)
30
- pnpm create unibest my-project -t base-sard-ui # 使用 sard-ui 库的基础模板
31
- pnpm create unibest my-project -t i18n # 多语言模板
32
- pnpm create unibest my-project -t demo # 所有demo的模板(包括i18n)
33
-
34
- # HBuilderX 模板,方便使用 uniCloud 云开发(已经不推荐使用了)
35
- pnpm create unibest my-project -t hbx-base # hbx的base模板
36
- pnpm create unibest my-project -t hbx-demo # hbx的demo模板,包含所有的demo
37
- ```