@deveco/deveco-code-darwin-arm64 0.1.7-rc.1 → 0.1.8-rc.0
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/CHANGELOG.md +15 -0
- package/README.md +0 -1
- package/bin/deveco +0 -0
- package/package.json +1 -1
- package/vendor/deveco-cli/.version +1 -0
- package/vendor/deveco-cli/package.json +7 -0
- package/vendor/ui-verification-mcp/package.json +59 -0
- package/vendor/ui-verification-mcp/uiVerification.mjs +3426 -3356
- package/vendor/mcp-bridge-native/napi_bridge.node +0 -0
- package/vendor/mcp-bridge-native/package.json +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.1.7 (2026-08-03)
|
|
4
|
+
|
|
5
|
+
### DevEco Code 核心
|
|
6
|
+
|
|
7
|
+
#### 新特性
|
|
8
|
+
|
|
9
|
+
- 地区访问策略新增 UTC+8 偏移回退与系统区域检测,扩展中国时区白名单(`bc637c8`)
|
|
10
|
+
|
|
11
|
+
### TUI 终端界面
|
|
12
|
+
|
|
13
|
+
#### 缺陷修复
|
|
14
|
+
|
|
15
|
+
- 修复流式编辑/写入字数统计因 JSON 转义未解码导致计数虚高(`a6e432e`)
|
|
16
|
+
- 修复启动时布局竞争导致的偶现启动失败问题(`c17c895`)
|
|
17
|
+
|
|
3
18
|
## v0.1.6 (2026-08-01)
|
|
4
19
|
|
|
5
20
|
### DevEco Code 核心
|
package/README.md
CHANGED
|
@@ -241,7 +241,6 @@ DevEco Code 集成了常用 HarmonyOS 开发工具能力:
|
|
|
241
241
|
| `hdc_log` | 收集/清理设备日志/查看连接模拟器 |
|
|
242
242
|
| `verify_ui` | 执行 UI 操作验证功能是否正确 |
|
|
243
243
|
| `arkts_check` | ArkTS 静态语法检查 |
|
|
244
|
-
| `arkts_knowledge_search` | HarmonyOS 知识搜索 |
|
|
245
244
|
| `switch_cwd` | 切换构建项目路径 |
|
|
246
245
|
|
|
247
246
|
常见场景包括:从零到一创建 HarmonyOS 工程、增量开发页面、修复编译报错、真机调试。
|
package/bin/deveco
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.2.2
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ui-verification-mcp",
|
|
3
|
+
"version": "0.0.16",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ui-verification-mcp": "bin/ui-verification-mcp.cjs"
|
|
9
|
+
},
|
|
10
|
+
"exports": {},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"bin"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "vite build",
|
|
20
|
+
"prepublishOnly": "npm run build",
|
|
21
|
+
"test": "vitest",
|
|
22
|
+
"test:real": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/",
|
|
23
|
+
"test:real:phone": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common",
|
|
24
|
+
"test:real:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common tests/realCases/pc",
|
|
25
|
+
"test:emu:common": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples",
|
|
26
|
+
"test:emu:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/pc/preset tests/realCases/pc/customSamples",
|
|
27
|
+
"test:emu:tripleFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/tripleFold/preset tests/realCases/tripleFold/customSamples",
|
|
28
|
+
"test:emu:wideFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/wideFold/preset tests/realCases/wideFold/customSamples",
|
|
29
|
+
"test:emu:2in1Foldable": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/2in1Foldable",
|
|
30
|
+
"test:emu:devSelfTest": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/published tests/realCases/common/customSamples/driverExam tests/realCases/common/customSamples/musicPlayer tests/realCases/common/customSamples/oh-bill tests/realCases/common/customSamples/readingApp",
|
|
31
|
+
"prelint": "tsc --noEmit",
|
|
32
|
+
"lint": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
|
|
33
|
+
"lint:fix": "eslint . --ext .ts --fix"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [],
|
|
36
|
+
"author": "",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"ajv": "8.18.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@eslint/js": "^9.39.3",
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
43
|
+
"@types/node": "24.10.1",
|
|
44
|
+
"eslint": "^9.39.3",
|
|
45
|
+
"eslint-config-prettier": "^10.1.8",
|
|
46
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
47
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
48
|
+
"globals": "^17.4.0",
|
|
49
|
+
"openai": "^6.39.1",
|
|
50
|
+
"tsx": "^4.22.4",
|
|
51
|
+
"typescript": "^5.9.3",
|
|
52
|
+
"typescript-eslint": "^8.55.0",
|
|
53
|
+
"vite": "^7.3.5",
|
|
54
|
+
"vitest": "^4.1.4"
|
|
55
|
+
},
|
|
56
|
+
"allowScripts": {
|
|
57
|
+
"esbuild@0.28.1": true
|
|
58
|
+
}
|
|
59
|
+
}
|