@dcloudio/uni-app-x 0.5.8 → 0.5.9
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 +0 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,39 +1 @@
|
|
|
1
1
|
# uni-app x 类型
|
|
2
|
-
|
|
3
|
-
## 初始化依赖
|
|
4
|
-
|
|
5
|
-
```shell
|
|
6
|
-
pnpm i
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
## 配置环境
|
|
10
|
-
|
|
11
|
-
当前目录建立 .env 文件
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
UNI_CORE_DIR = "%vuejs-core 仓库路径%/packages/uni-ext-api/src"
|
|
15
|
-
UNI_UTS_PLUGIN_API_DIR = "%新 uni-app 仓库路径%/api"
|
|
16
|
-
UNI_UTS_PLUGIN_COMPONENT_DIR = "%新 uni-app 仓库路径%/component"
|
|
17
|
-
UNI_COMPLIER_META_DIR = "%旧 uni-app 仓库路径%/packages/uni-uts-v1/lib/ext-api"
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## 构建
|
|
22
|
-
|
|
23
|
-
构建框架内置 Uni Api
|
|
24
|
-
|
|
25
|
-
```shell
|
|
26
|
-
pnpm build:types:core
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
构建 Ext Api
|
|
30
|
-
|
|
31
|
-
```shell
|
|
32
|
-
pnpm build:types:ext
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
生成默认参数数据到编译器
|
|
36
|
-
|
|
37
|
-
```shell
|
|
38
|
-
pnpm build:types:meta
|
|
39
|
-
```
|