@sylphai/adal-cli 0.3.5 → 0.4.0-beta.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/bin/adal-cli.js +11 -4
- package/package.json +5 -5
package/bin/adal-cli.js
CHANGED
|
@@ -29,10 +29,17 @@ const packageName = platformMap[platformKey];
|
|
|
29
29
|
|
|
30
30
|
if (!packageName) {
|
|
31
31
|
console.error(`❌ Unsupported platform: ${platform}-${arch}`);
|
|
32
|
-
console.error('
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
console.error('');
|
|
33
|
+
console.error('AdaL CLI currently supports:');
|
|
34
|
+
console.error(' • macOS (Apple Silicon)');
|
|
35
|
+
console.error(' • macOS (Intel)');
|
|
36
|
+
console.error(' • Linux (x64)');
|
|
37
|
+
console.error(' • Windows (x64)');
|
|
38
|
+
console.error('');
|
|
39
|
+
console.error('📖 For more details, see: https://adal-cli-docs.onrender.com/troubleshooting/installation');
|
|
40
|
+
console.error('');
|
|
41
|
+
console.error('If you need support for a different platform, please open an issue:');
|
|
42
|
+
console.error(' https://github.com/SylphAI-Inc/adal/issues');
|
|
36
43
|
process.exit(1);
|
|
37
44
|
}
|
|
38
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphai/adal-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-beta.1",
|
|
4
4
|
"description": "AI-powered CLI for development and research tasks",
|
|
5
5
|
"bin": {
|
|
6
6
|
"adal": "bin/adal-cli.js"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"postinstall": "node lib/setup-cache.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@sylphai/adal-cli-darwin-arm64": "0.
|
|
13
|
-
"@sylphai/adal-cli-darwin-x64": "0.
|
|
14
|
-
"@sylphai/adal-cli-linux-x64": "0.
|
|
15
|
-
"@sylphai/adal-cli-win32-x64": "0.
|
|
12
|
+
"@sylphai/adal-cli-darwin-arm64": "0.4.0-beta.1",
|
|
13
|
+
"@sylphai/adal-cli-darwin-x64": "0.4.0-beta.1",
|
|
14
|
+
"@sylphai/adal-cli-linux-x64": "0.4.0-beta.1",
|
|
15
|
+
"@sylphai/adal-cli-win32-x64": "0.4.0-beta.1"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"bin/",
|