1
1
import select from '@inquirer/select'
2
2
import { Args , Command , Flags , Interfaces , ux } from '@oclif/core'
3
+ import { printTable } from '@oclif/table'
3
4
import { got } from 'got'
4
5
import { basename } from 'node:path'
5
6
import { sort } from 'semver'
6
- import TtyTable from 'tty-table'
7
7
8
8
import { Updater } from '../update.js'
9
9
@@ -49,6 +49,11 @@ export default class UpdateCommand extends Command {
49
49
description : 'Interactively select version to install. This is ignored if a channel is provided.' ,
50
50
exclusive : [ 'version' ] ,
51
51
} ) ,
52
+ verbose : Flags . boolean ( {
53
+ char : 'b' ,
54
+ dependsOn : [ 'available' ] ,
55
+ description : 'Show more details about the available versions.' ,
56
+ } ) ,
52
57
version : Flags . string ( {
53
58
char : 'v' ,
54
59
description : 'Install a specific version.' ,
@@ -62,32 +67,34 @@ export default class UpdateCommand extends Command {
62
67
if ( flags . available ) {
63
68
const { distTags, index, localVersions} = await lookupVersions ( updater , this . config )
64
69
65
- const headers = [
66
- { align : 'left' , value : 'Location' } ,
67
- { align : 'left' , value : 'Version' } ,
68
- ]
69
-
70
- if ( distTags ) {
71
- headers . push ( { align : 'left' , value : 'Channel' } )
72
- }
73
-
74
- // eslint-disable-next-line new-cap
75
- const t = TtyTable (
76
- headers ,
77
- sort ( Object . keys ( index ) )
78
- . reverse ( )
79
- . map ( ( version ) => {
80
- const location = localVersions . find ( ( l ) => basename ( l ) . startsWith ( version ) ) || index [ version ]
81
- if ( distTags ) {
82
- return [ location , version , distTags [ version ] ?? '' ]
83
- }
84
-
85
- return [ location , version ]
86
- } ) ,
87
- { compact : true } ,
88
- )
89
-
90
- ux . stdout ( t . render ( ) )
70
+ const data = Object . keys ( index ) . map ( ( version ) => {
71
+ const location = localVersions . find ( ( l ) => basename ( l ) . startsWith ( version ) ) || index [ version ]
72
+ const channel =
73
+ distTags [ version ] === 'latest'
74
+ ? 'stable'
75
+ : distTags [ version ] === 'latest-rc'
76
+ ? 'stable-rc'
77
+ : distTags [ version ]
78
+ return {
79
+ channel,
80
+ downloaded : location . includes ( 'http' ) ? '' : 'true' ,
81
+ location,
82
+ version : this . config . version === version ? `${ ux . colorize ( 'yellowBright' , version ) } (current)` : version ,
83
+ }
84
+ } )
85
+
86
+ printTable ( {
87
+ borderStyle : 'vertical-with-outline' ,
88
+ columns : flags . verbose
89
+ ? [ 'version' , 'channel' , 'downloaded' , 'location' ]
90
+ : [ 'version' , 'channel' , 'downloaded' ] ,
91
+ data,
92
+ headerOptions : {
93
+ formatter : 'capitalCase' ,
94
+ } ,
95
+ overflow : 'wrap' ,
96
+ } )
97
+
91
98
return
92
99
}
93
100
0 commit comments