File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export interface Args extends VsArgs {
3232 readonly port ?: number
3333 readonly socket ?: string
3434 readonly version ?: boolean
35+ readonly force ?: boolean
3536 readonly "list-extensions" ?: boolean
3637 readonly "install-extension" ?: string [ ]
3738 readonly "uninstall-extension" ?: string [ ]
@@ -100,7 +101,8 @@ const options: Options<Required<Args>> = {
100101 "extra-extensions-dir" : { type : "string[]" , path : true } ,
101102 "extra-builtin-extensions-dir" : { type : "string[]" , path : true } ,
102103 "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." } ,
104106 "uninstall-extension" : { type : "string[]" } ,
105107
106108 locale : { type : "string" } ,
You can’t perform that action at this time.
0 commit comments