@atooyu/uxto-cli 1.0.0 → 1.0.2

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 (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -2,14 +2,31 @@
2
2
 
3
3
  UXTO UniApp 项目脚手架工具 - 支持 iOS、Android、鸿蒙多平台。
4
4
 
5
- ## 安装
5
+ ## 快速开始
6
+
7
+ ### 使用 npx (推荐)
8
+
9
+ 无需安装,直接创建项目:
6
10
 
7
11
  ```bash
8
- # 全局安装
12
+ # 创建项目
13
+ npx @atooyu/uxto-cli create my-app
14
+
15
+ # 或简写
16
+ npx uxto create my-app
17
+ ```
18
+
19
+ ### 全局安装
20
+
21
+ ```bash
22
+ # 使用 pnpm
9
23
  pnpm add -g @atooyu/uxto-cli
10
24
 
11
25
  # 或使用 npm
12
26
  npm install -g @atooyu/uxto-cli
27
+
28
+ # 创建项目
29
+ uxto create my-app
13
30
  ```
14
31
 
15
32
  ## 命令
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atooyu/uxto-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "UXTO UniApp 项目脚手架工具 - 支持 iOS、Android、鸿蒙",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,6 +31,7 @@
31
31
  "author": "atooyu <chujingu@163.com>",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
+ "@atooyu/uxto-fronted": "^1.0.1",
34
35
  "chalk": "^5.3.0",
35
36
  "commander": "^12.0.0",
36
37
  "fs-extra": "^11.2.0",