@deveco-codegenie/mcp-win32-x64 0.2.3-beta → 0.2.3

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
@@ -133,18 +133,11 @@ $env:DEVECO_PATH = "C:\Program Files\Huawei\DevEco Studio"
133
133
  |------|------|------|------|
134
134
  | `module` | `string` | 否 | 指定模块及 Target(如 `entry@default`);省略则构建整个 APP |
135
135
  | `product` | `string` | 否 | 指定 Product 名称(仅构建整个 APP 时有效,与 `module` 互斥) |
136
- | `buildIntent` | `BuildIntent` | 否 | 构建意图,默认为 `LogVerification` |
136
+ | `buildMode` | `string` | 否 | 构建模式,值为 build-profile.json5 中 buildModeSet 定义的模式的 name 字段(如内置的 'debug'、'release',或用户自定义的模式名称),默认为 `debug` |
137
+ | `clean` | `boolean` | 否 | 是否在构建前执行 clean 清理构建产物。如果为 true,则会先执行清理然后再进行构建 |
138
+ | `enable_inspector_source_jump` | `boolean` | 否 | 是否启用 ArkUI Inspector 源码跳转功能(对应底层 debugLine 参数):在构建产物中为系统组件增加源码位置信息,从而支持 ArkUI Inspector 中点击组件跳转到源码位置。不传则使用构建模式默认值 |
137
139
  | `logPath` | `string` | 否 | 构建日志保存路径 |
138
140
 
139
- **构建意图(`BuildIntent`):**
140
-
141
- | 枚举值 | 说明 |
142
- |--------|------|
143
- | `LogVerification`(默认) | 保留详细运行日志,支持断点调试 |
144
- | `UIDebug` | 支持获取界面元素与代码位置对应关系 |
145
- | `PerformanceProfile` | 开启代码优化,保留调试钩子,用于性能调优 |
146
- | `Release` | 极致压缩混淆,不支持断点调试(包体积最小) |
147
-
148
141
  构建前会自动执行 `ohpm install` 安装依赖。
149
142
 
150
143
  ---