@lvnt/release-radar-cli 0.2.1 → 0.2.3

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/dist/index.js CHANGED
@@ -63,6 +63,8 @@ async function runInteractive() {
63
63
  }
64
64
  // Download/update selected tools
65
65
  console.log('');
66
+ const successes = [];
67
+ const failures = [];
66
68
  for (const tool of selected) {
67
69
  if (tool.type === 'npm') {
68
70
  console.log(chalk.bold(`Updating npm package ${tool.displayName} (${tool.package})...`));
@@ -70,9 +72,11 @@ async function runInteractive() {
70
72
  if (result.success) {
71
73
  tracker.recordDownload(tool.name, tool.version, `npm:${tool.package}`);
72
74
  console.log(chalk.green(` Updated ${tool.package} to ${tool.version} ✓\n`));
75
+ successes.push({ name: tool.displayName, version: tool.version, type: 'npm' });
73
76
  }
74
77
  else {
75
78
  console.log(chalk.red(` Failed: ${result.error}\n`));
79
+ failures.push({ name: tool.displayName, version: tool.version, error: result.error || 'Unknown error' });
76
80
  }
77
81
  }
78
82
  else {
@@ -81,13 +85,39 @@ async function runInteractive() {
81
85
  if (result.success) {
82
86
  tracker.recordDownload(tool.name, tool.version, tool.filename);
83
87
  console.log(chalk.green(` Saved to ${config.downloadDir}/${tool.filename} ✓\n`));
88
+ successes.push({ name: tool.displayName, version: tool.version, type: 'download' });
84
89
  }
85
90
  else {
86
91
  console.log(chalk.red(` Failed: ${result.error}\n`));
92
+ failures.push({ name: tool.displayName, version: tool.version, error: result.error || 'Unknown error' });
87
93
  }
88
94
  }
89
95
  }
90
- console.log(chalk.green('Done!'));
96
+ // Summary report
97
+ console.log(chalk.bold('─'.repeat(50)));
98
+ console.log(chalk.bold('Summary\n'));
99
+ if (successes.length > 0) {
100
+ console.log(chalk.green(`✓ ${successes.length} succeeded:`));
101
+ for (const s of successes) {
102
+ console.log(chalk.green(` • ${s.name} ${s.version}`));
103
+ }
104
+ }
105
+ if (failures.length > 0) {
106
+ console.log(chalk.red(`\n✗ ${failures.length} failed:`));
107
+ for (const f of failures) {
108
+ console.log(chalk.red(` • ${f.name} ${f.version}: ${f.error}`));
109
+ }
110
+ }
111
+ console.log('');
112
+ if (failures.length === 0) {
113
+ console.log(chalk.green('All downloads completed successfully!'));
114
+ }
115
+ else if (successes.length === 0) {
116
+ console.log(chalk.red('All downloads failed.'));
117
+ }
118
+ else {
119
+ console.log(chalk.yellow(`Completed with ${failures.length} failure(s).`));
120
+ }
91
121
  }
92
122
  async function main() {
93
123
  const args = process.argv.slice(2).filter(arg => !arg.startsWith('--'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvnt/release-radar-cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Interactive CLI for downloading tools through Nexus proxy",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -37,4 +37,4 @@
37
37
  "typescript": "^5.3.0",
38
38
  "vitest": "^1.1.0"
39
39
  }
40
- }
40
+ }
package/versions.json CHANGED
@@ -1,21 +1,109 @@
1
1
  {
2
- "generatedAt": "2026-01-24T10:00:00Z",
2
+ "generatedAt": "2026-01-25T13:16:44.089Z",
3
3
  "tools": [
4
+ {
5
+ "name": "Claude Code CLI",
6
+ "displayName": "Claude Code CLI",
7
+ "version": "2.1.19",
8
+ "publishedAt": "2026-01-25T13:16:44.089Z",
9
+ "downloadUrl": "{{NEXUS_URL}}/storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/2.1.19/win32-x64/claude.exe",
10
+ "filename": "claude-2.1.19.exe"
11
+ },
4
12
  {
5
13
  "name": "Ninja",
6
14
  "displayName": "Ninja",
7
- "version": "1.12.0",
8
- "publishedAt": "2026-01-20T00:00:00Z",
9
- "downloadUrl": "{{NEXUS_URL}}/github.com/ninja-build/ninja/releases/download/v1.12.0/ninja-linux.zip",
10
- "filename": "ninja-1.12.0-linux.zip"
15
+ "version": "1.13.2",
16
+ "publishedAt": "2026-01-25T13:16:44.089Z",
17
+ "downloadUrl": "{{NEXUS_URL}}/github.com/ninja-build/ninja/releases/download/v1.13.2/ninja-win.zip",
18
+ "filename": "ninja-1.13.2-win.zip"
11
19
  },
12
20
  {
13
21
  "name": "CMake",
14
22
  "displayName": "CMake",
15
- "version": "3.28.1",
16
- "publishedAt": "2026-01-18T00:00:00Z",
17
- "downloadUrl": "{{NEXUS_URL}}/github.com/Kitware/CMake/releases/download/v3.28.1/cmake-3.28.1-linux-x86_64.tar.gz",
18
- "filename": "cmake-3.28.1-linux-x86_64.tar.gz"
23
+ "version": "4.2.2",
24
+ "publishedAt": "2026-01-25T13:16:44.089Z",
25
+ "downloadUrl": "{{NEXUS_URL}}/github.com/Kitware/CMake/releases/download/v4.2.2/cmake-4.2.2-windows-x86_64.zip",
26
+ "filename": "cmake-4.2.2-windows-x86_64.zip"
27
+ },
28
+ {
29
+ "name": "Git",
30
+ "displayName": "Git for Windows",
31
+ "version": "2.52.0.windows.1",
32
+ "publishedAt": "2026-01-25T13:16:44.089Z",
33
+ "downloadUrl": "{{NEXUS_URL}}/github.com/git-for-windows/git/releases/download/v2.52.0.windows.1/Git-2.52.0-64-bit.exe",
34
+ "filename": "Git-2.52.0-64-bit.exe"
35
+ },
36
+ {
37
+ "name": "Clangd",
38
+ "displayName": "Clangd",
39
+ "version": "21.1.8",
40
+ "publishedAt": "2026-01-25T13:16:44.089Z",
41
+ "downloadUrl": "{{NEXUS_URL}}/github.com/clangd/clangd/releases/download/21.1.8/clangd-windows-21.1.8.zip",
42
+ "filename": "clangd-windows-21.1.8.zip"
43
+ },
44
+ {
45
+ "name": "Wezterm",
46
+ "displayName": "Wezterm",
47
+ "version": "20240203-110809-5046fc22",
48
+ "publishedAt": "2026-01-25T13:16:44.089Z",
49
+ "downloadUrl": "{{NEXUS_URL}}/github.com/wezterm/wezterm/releases/download/20240203-110809-5046fc22/WezTerm-20240203-110809-5046fc22-setup.exe",
50
+ "filename": "WezTerm-20240203-110809-5046fc22-setup.exe"
51
+ },
52
+ {
53
+ "name": "Ralphy",
54
+ "displayName": "Ralphy CLI",
55
+ "version": "4.5.3",
56
+ "publishedAt": "2026-01-25T13:16:44.089Z",
57
+ "type": "npm",
58
+ "package": "ralphy-cli"
59
+ },
60
+ {
61
+ "name": "vscode-cpptools",
62
+ "displayName": "C/C++ Extension",
63
+ "version": "1.29.3",
64
+ "publishedAt": "2026-01-25T13:16:44.089Z",
65
+ "downloadUrl": "{{NEXUS_URL}}/github.com/microsoft/vscode-cpptools/releases/download/v1.29.3/cpptools-windows-x64.vsix",
66
+ "filename": "cpptools-windows-x64-1.29.3.vsix"
67
+ },
68
+ {
69
+ "name": "vscode-clangd",
70
+ "displayName": "clangd Extension",
71
+ "version": "0.4.0",
72
+ "publishedAt": "2026-01-25T13:16:44.089Z",
73
+ "downloadUrl": "{{NEXUS_URL}}/github.com/clangd/vscode-clangd/releases/download/0.4.0/vscode-clangd-0.4.0.vsix",
74
+ "filename": "vscode-clangd-0.4.0.vsix"
75
+ },
76
+ {
77
+ "name": "CMake Tools",
78
+ "displayName": "CMake Tools Extension",
79
+ "version": "1.21.36",
80
+ "publishedAt": "2026-01-25T13:16:44.089Z",
81
+ "downloadUrl": "{{NEXUS_URL}}/github.com/microsoft/vscode-cmake-tools/releases/download/v1.21.36/cmake-tools.vsix",
82
+ "filename": "cmake-tools-1.21.36.vsix"
83
+ },
84
+ {
85
+ "name": "Roo Code",
86
+ "displayName": "Roo Code Extension",
87
+ "version": "3.43.0",
88
+ "publishedAt": "2026-01-25T13:16:44.089Z",
89
+ "downloadUrl": "{{NEXUS_URL}}/github.com/RooCodeInc/Roo-Code/releases/download/v3.43.0/roo-cline-3.43.0.vsix",
90
+ "filename": "roo-cline-3.43.0.vsix"
91
+ },
92
+ {
93
+ "name": "Atlascode",
94
+ "displayName": "Atlassian Extension",
95
+ "version": "4.0.17",
96
+ "publishedAt": "2026-01-25T13:16:44.089Z",
97
+ "downloadUrl": "{{NEXUS_URL}}/github.com/atlassian/atlascode/releases/download/v4.0.17/atlascode-4.0.17.vsix",
98
+ "filename": "atlascode-4.0.17.vsix"
99
+ },
100
+ {
101
+ "name": "Zed",
102
+ "displayName": "Zed",
103
+ "version": "0.220.5",
104
+ "publishedAt": "2026-01-25T13:16:44.089Z",
105
+ "downloadUrl": "{{NEXUS_URL}}/github.com/zed-industries/zed/releases/download/v0.220.5/Zed-x86_64.exe",
106
+ "filename": "Zed-0.220.5-x86_64.exe"
19
107
  }
20
108
  ]
21
- }
109
+ }