@lvnt/release-radar-cli 0.2.15 → 0.2.16
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/ui.js +5 -10
- package/package.json +2 -2
- package/versions.json +98 -10
package/dist/ui.js
CHANGED
|
@@ -114,21 +114,16 @@ export function renderTable(rows) {
|
|
|
114
114
|
console.log(chalk.gray('─'.repeat(totalWidth)));
|
|
115
115
|
// Rows
|
|
116
116
|
for (const row of rows) {
|
|
117
|
-
|
|
118
|
-
let statusText;
|
|
119
|
-
let statusColored;
|
|
117
|
+
let statusStr;
|
|
120
118
|
switch (row.status) {
|
|
121
119
|
case 'new':
|
|
122
|
-
|
|
123
|
-
statusColored = chalk.blue(statusText);
|
|
120
|
+
statusStr = chalk.blue('NEW');
|
|
124
121
|
break;
|
|
125
122
|
case 'update':
|
|
126
|
-
|
|
127
|
-
statusColored = chalk.yellow(statusText);
|
|
123
|
+
statusStr = chalk.yellow('UPDATE');
|
|
128
124
|
break;
|
|
129
125
|
case 'current':
|
|
130
|
-
|
|
131
|
-
statusColored = chalk.green(statusText);
|
|
126
|
+
statusStr = chalk.green('✓');
|
|
132
127
|
break;
|
|
133
128
|
}
|
|
134
129
|
const typeStr = row.type === 'npm' ? chalk.magenta('npm') : chalk.cyan('wget');
|
|
@@ -136,7 +131,7 @@ export function renderTable(rows) {
|
|
|
136
131
|
row.displayName.padEnd(colWidths.tool) +
|
|
137
132
|
row.version.padEnd(colWidths.latest) +
|
|
138
133
|
row.downloadedVersion.padEnd(colWidths.downloaded) +
|
|
139
|
-
|
|
134
|
+
statusStr.padEnd(colWidths.status + 5) + // +5 for chalk color codes
|
|
140
135
|
typeStr);
|
|
141
136
|
}
|
|
142
137
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvnt/release-radar-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.16",
|
|
4
4
|
"description": "Interactive CLI for downloading tools through Nexus proxy",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
"typescript": "^5.3.0",
|
|
45
45
|
"vitest": "^1.1.0"
|
|
46
46
|
}
|
|
47
|
-
}
|
|
47
|
+
}
|
package/versions.json
CHANGED
|
@@ -1,21 +1,109 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-01-
|
|
2
|
+
"generatedAt": "2026-01-25T15:50:59.184Z",
|
|
3
3
|
"tools": [
|
|
4
|
+
{
|
|
5
|
+
"name": "Claude Code CLI",
|
|
6
|
+
"displayName": "Claude Code CLI",
|
|
7
|
+
"version": "2.1.19",
|
|
8
|
+
"publishedAt": "2026-01-25T15:50:59.184Z",
|
|
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.
|
|
8
|
-
"publishedAt": "2026-01-
|
|
9
|
-
"downloadUrl": "{{NEXUS_URL}}/github.com/ninja-build/ninja/releases/download/v1.
|
|
10
|
-
"filename": "ninja-1.
|
|
15
|
+
"version": "1.13.2",
|
|
16
|
+
"publishedAt": "2026-01-25T15:50:59.184Z",
|
|
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": "
|
|
16
|
-
"publishedAt": "2026-01-
|
|
17
|
-
"downloadUrl": "{{NEXUS_URL}}/github.com/Kitware/CMake/releases/download/
|
|
18
|
-
"filename": "cmake-
|
|
23
|
+
"version": "4.2.2",
|
|
24
|
+
"publishedAt": "2026-01-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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-25T15:50:59.184Z",
|
|
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.6",
|
|
104
|
+
"publishedAt": "2026-01-25T15:50:59.184Z",
|
|
105
|
+
"downloadUrl": "{{NEXUS_URL}}/github.com/zed-industries/zed/releases/download/v0.220.6/Zed-x86_64.exe",
|
|
106
|
+
"filename": "Zed-0.220.6-x86_64.exe"
|
|
19
107
|
}
|
|
20
108
|
]
|
|
21
|
-
}
|
|
109
|
+
}
|