umadev 1.0.3 → 1.0.5
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/bin/cli.js +2 -0
- package/package.json +8 -8
package/bin/cli.js
CHANGED
|
@@ -24,6 +24,8 @@ const PLATFORM_PACKAGES = {
|
|
|
24
24
|
'linux-x64': '@umacloud/cli-linux-x64',
|
|
25
25
|
'linux-arm64': '@umacloud/cli-linux-arm64',
|
|
26
26
|
'win32-x64': '@umacloud/cli-win32-x64',
|
|
27
|
+
// Windows on ARM runs x64 binaries via built-in emulation; reuse the x64 build.
|
|
28
|
+
'win32-arm64': '@umacloud/cli-win32-x64',
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
function platformKey() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "umadev",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A project-director Agent for AI coding hosts — drives your logged-in Claude Code / Codex through a 9-phase commercial delivery pipeline with governance. No API key needed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"node": ">=18"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@umacloud/cli-darwin-arm64": "1.0.
|
|
38
|
-
"@umacloud/cli-darwin-x64": "1.0.
|
|
39
|
-
"@umacloud/cli-linux-x64": "1.0.
|
|
40
|
-
"@umacloud/cli-linux-arm64": "1.0.
|
|
41
|
-
"@umacloud/cli-win32-x64": "1.0.
|
|
42
|
-
"@umacloud/model-e5-small": "1.0.
|
|
43
|
-
"@umacloud/knowledge": "1.0.
|
|
37
|
+
"@umacloud/cli-darwin-arm64": "1.0.5",
|
|
38
|
+
"@umacloud/cli-darwin-x64": "1.0.5",
|
|
39
|
+
"@umacloud/cli-linux-x64": "1.0.5",
|
|
40
|
+
"@umacloud/cli-linux-arm64": "1.0.5",
|
|
41
|
+
"@umacloud/cli-win32-x64": "1.0.5",
|
|
42
|
+
"@umacloud/model-e5-small": "1.0.5",
|
|
43
|
+
"@umacloud/knowledge": "1.0.5"
|
|
44
44
|
}
|
|
45
45
|
}
|