create-unibest 1.19.0 → 2.2.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.
Files changed (3) hide show
  1. package/README.md +3 -4
  2. package/outfile.cjs +48 -50
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -26,13 +26,12 @@ pnpm create unibest <项目名称> -t <模板名>
26
26
  ```sh
27
27
  # VS Code 模板
28
28
  pnpm create unibest my-project # 默认用 base 模板
29
- pnpm create unibest my-project -t base # 基础模板
30
- pnpm create unibest my-project -t tabbar # 自定义的 tabbar
31
- pnpm create unibest my-project -t spa # 完全spa方式,用组件模拟的tabbar
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 库的基础模板
32
31
  pnpm create unibest my-project -t i18n # 多语言模板
33
32
  pnpm create unibest my-project -t demo # 所有demo的模板(包括i18n)
34
33
 
35
- # HBuilderX 模板,方便使用 uniCloud 云开发
34
+ # HBuilderX 模板,方便使用 uniCloud 云开发(已经不推荐使用了)
36
35
  pnpm create unibest my-project -t hbx-base # hbx的base模板
37
36
  pnpm create unibest my-project -t hbx-demo # hbx的demo模板,包含所有的demo
38
37
  ```