@atooyu/uxto-cli 1.0.1 → 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.
- package/README.md +19 -2
- package/package.json +1 -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
|
## 命令
|