@ai-git/cli 2.7.0 → 2.8.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/package.json CHANGED
@@ -1,35 +1,35 @@
1
1
  {
2
2
  "name": "@ai-git/cli",
3
- "version": "2.7.0",
3
+ "version": "2.8.0",
4
4
  "description": "AI-powered git commit message generator",
5
+ "keywords": [
6
+ "ai",
7
+ "cli",
8
+ "commit",
9
+ "conventional-commits",
10
+ "git"
11
+ ],
12
+ "homepage": "https://ai-git.xyz",
5
13
  "license": "MIT",
6
14
  "repository": {
7
15
  "type": "git",
8
16
  "url": "https://github.com/sadiksaifi/ai-git"
9
17
  },
10
- "homepage": "https://ai-git.xyz",
11
18
  "bin": {
12
19
  "ai-git": "bin/ai-git"
13
20
  },
14
- "optionalDependencies": {
15
- "@ai-git/darwin-arm64": "2.7.0",
16
- "@ai-git/darwin-x64": "2.7.0",
17
- "@ai-git/linux-arm64": "2.7.0",
18
- "@ai-git/linux-x64": "2.7.0",
19
- "@ai-git/win32-x64": "2.7.0"
20
- },
21
- "scripts": {
22
- "postinstall": "node scripts/postinstall.js"
23
- },
24
21
  "files": [
25
22
  "bin/",
26
23
  "scripts/"
27
24
  ],
28
- "keywords": [
29
- "git",
30
- "ai",
31
- "commit",
32
- "conventional-commits",
33
- "cli"
34
- ]
25
+ "scripts": {
26
+ "postinstall": "node scripts/postinstall.js"
27
+ },
28
+ "optionalDependencies": {
29
+ "@ai-git/darwin-arm64": "2.8.0",
30
+ "@ai-git/darwin-x64": "2.8.0",
31
+ "@ai-git/linux-arm64": "2.8.0",
32
+ "@ai-git/linux-x64": "2.8.0",
33
+ "@ai-git/win32-x64": "2.8.0"
34
+ }
35
35
  }
@@ -53,12 +53,8 @@ function main() {
53
53
 
54
54
  // Platform binary not found (e.g., --ignore-optional was used)
55
55
  // Provide guidance rather than silently failing
56
- console.warn(
57
- `\nai-git: Platform binary not found for ${os.platform()}-${os.arch()}.`,
58
- );
59
- console.warn(
60
- "If you used --ignore-optional, the platform package was skipped.",
61
- );
56
+ console.warn(`\nai-git: Platform binary not found for ${os.platform()}-${os.arch()}.`);
57
+ console.warn("If you used --ignore-optional, the platform package was skipped.");
62
58
  console.warn(
63
59
  "You can install the binary manually: curl -fsSL https://ai-git.xyz/install | bash\n",
64
60
  );