@open-dy/tt-wasmsplit-ci 1.0.3 → 1.0.4

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 CHANGED
@@ -75,6 +75,29 @@ Options:
75
75
  -h, --help display help for command
76
76
  ```
77
77
 
78
+
79
+ ## 上传函数名文件
80
+ ```bash
81
+ tt-wasmsplit-ci uploadSymbolList -p <package> -i <appId> -f <symbolListPath>
82
+ ```
83
+ 输入需要开始分包的小游戏包,上传 wasm 符号表文件,并返回匹配到的函数列表
84
+ ```
85
+ Usage: tt-wasmsplit-ci uploadSymbolList [options]
86
+
87
+ 上传 wasm 符号表文件
88
+ 注意:文件内容只包含函数名即可,不要包含引号、逗号等符号。e.g.
89
+
90
+ UIManager_Func1
91
+ UIManager_Func2
92
+ UIManager_Func3
93
+
94
+ Options:
95
+ -p, --package <path> 原始包路径,必填
96
+ -i, --appid <appid> app id,必填
97
+ --no-report 使用该参数时将不采集行为数据
98
+ -f, --funcList <path> wasm 符号表文件路径,必填
99
+ ```
100
+
78
101
  ## 终止分包
79
102
  ```bash
80
103
  tt-wasmsplit-ci disable -p <package> -i <appId>