@phnx-labs/computer-cli 0.1.0 → 0.1.1
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 +5 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
- Fix compiled Windows asset lookup so status and helper discovery work from the installed CLI.
|
|
6
|
+
- Verify compiled status on macOS, Linux, and Windows in CI.
|
|
7
|
+
|
|
3
8
|
## 0.1.0
|
|
4
9
|
|
|
5
10
|
- Extract computer automation and native drivers into an independent CLI.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phnx-labs/computer-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Native desktop automation over Accessibility, UI Automation and VNC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"test": "bash scripts/test.sh"
|
|
26
26
|
},
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@phnx-labs/computer-cli-darwin-arm64": "0.1.
|
|
29
|
-
"@phnx-labs/computer-cli-darwin-x64": "0.1.
|
|
30
|
-
"@phnx-labs/computer-cli-linux-arm64": "0.1.
|
|
31
|
-
"@phnx-labs/computer-cli-linux-x64": "0.1.
|
|
32
|
-
"@phnx-labs/computer-cli-win32-x64": "0.1.
|
|
28
|
+
"@phnx-labs/computer-cli-darwin-arm64": "0.1.1",
|
|
29
|
+
"@phnx-labs/computer-cli-darwin-x64": "0.1.1",
|
|
30
|
+
"@phnx-labs/computer-cli-linux-arm64": "0.1.1",
|
|
31
|
+
"@phnx-labs/computer-cli-linux-x64": "0.1.1",
|
|
32
|
+
"@phnx-labs/computer-cli-win32-x64": "0.1.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@inquirer/prompts": "8.5.2",
|