File tree 1 file changed +3
-1
lines changed 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export interface Args extends VsArgs {
35
35
readonly force ?: boolean
36
36
readonly "list-extensions" ?: boolean
37
37
readonly "install-extension" ?: string [ ]
38
+ readonly "show-versions" ?: boolean
38
39
readonly "uninstall-extension" ?: string [ ]
39
40
readonly locale ?: string
40
41
readonly _ : string [ ]
@@ -100,10 +101,11 @@ const options: Options<Required<Args>> = {
100
101
"builtin-extensions-dir" : { type : "string" , path : true } ,
101
102
"extra-extensions-dir" : { type : "string[]" , path : true } ,
102
103
"extra-builtin-extensions-dir" : { type : "string[]" , path : true } ,
103
- "list-extensions" : { type : "boolean" } ,
104
+ "list-extensions" : { type : "boolean" , description : "Listed installed extensions." } ,
104
105
force : { type : "boolean" } ,
105
106
"install-extension" : { type : "string[]" , description : "Install or update an extension by id or vsix." } ,
106
107
"uninstall-extension" : { type : "string[]" } ,
108
+ "show-versions" : { type : "boolean" , description : "Show extension versions." } ,
107
109
108
110
locale : { type : "string" } ,
109
111
log : { type : LogLevel } ,
You can’t perform that action at this time.
0 commit comments