create-unibest 1.3.2 → 1.3.3
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 +2 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,25 +7,12 @@
|
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
<h2 align="center">
|
|
10
|
-
<sub>>_ Easy to use create unibest
|
|
10
|
+
<sub>>_ Easy to use create unibest</sub>
|
|
11
11
|
</h2>
|
|
12
12
|
|
|
13
|
-
# 📦 使用
|
|
14
|
-
|
|
15
|
-
```shell
|
|
16
|
-
# pnpm
|
|
17
|
-
pnpm create unibest
|
|
18
|
-
|
|
19
|
-
# npm
|
|
20
|
-
npm create unibest@latest
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
> [!TIP]
|
|
24
|
-
> 建议添加上标记名(@latest),否则 npm 可能会解析到缓存的过时软件包版本。
|
|
25
|
-
|
|
26
13
|
## 📖 介绍
|
|
27
14
|
|
|
28
|
-
`create-unibest` 是一个用于快速创建 `
|
|
15
|
+
`create-unibest` 是一个用于快速创建 `unibest` 项目的轻量脚手架工具,它可以帮助你快速创建一个基于 `vite` + `vue3` + `TS` 的 `uni-app` 项目,同时提供了一些模板供你选择。
|
|
29
16
|
|
|
30
17
|
## 🚤 快速使用
|
|
31
18
|
|
|
@@ -40,7 +27,3 @@ pnpm create unibest my-unibest -t base # 基础模板
|
|
|
40
27
|
pnpm create unibest my-unibest -t i18n # 多语言模板
|
|
41
28
|
pnpm create unibest my-unibest -t demo # 所有demo的模板,还包含了i18n
|
|
42
29
|
```
|
|
43
|
-
|
|
44
|
-
<!-- - 如果想学习所有的 `demo`,可以通过 `pnpm create unibest my-unibest -t demo` 生成。(包含了所有的 `demo` 和 `i18n` 代码)
|
|
45
|
-
- 如果是新开发一个项目,建议使用 `base` 模板,可以通过 `pnpm create unibest my-unibest -t base` 生成。(不含 `demo` 代码)
|
|
46
|
-
- 如果项目有多语言需求,建议使用 `i18n` 模板,可以通过 `pnpm create unibest my-unibest -t i18n` 生成。(不含 `demo` 代码) -->
|