File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export interface Args extends VsArgs {
32
32
readonly port ?: number
33
33
readonly socket ?: string
34
34
readonly version ?: boolean
35
+ readonly force ?: boolean
35
36
readonly "list-extensions" ?: boolean
36
37
readonly "install-extension" ?: string [ ]
37
38
readonly "uninstall-extension" ?: string [ ]
@@ -100,7 +101,8 @@ const options: Options<Required<Args>> = {
100
101
"extra-extensions-dir" : { type : "string[]" , path : true } ,
101
102
"extra-builtin-extensions-dir" : { type : "string[]" , path : true } ,
102
103
"list-extensions" : { type : "boolean" } ,
103
- "install-extension" : { type : "string[]" } ,
104
+ force : { type : "boolean" } ,
105
+ "install-extension" : { type : "string[]" , description : "Install or update an extension by id or vsix." } ,
104
106
"uninstall-extension" : { type : "string[]" } ,
105
107
106
108
locale : { type : "string" } ,
You can’t perform that action at this time.
0 commit comments