Qualify extensions in help output as VS Code extensions

Also add a description for uninstall-extension and force.
This commit is contained in:
Asher 2020-03-13 13:21:46 -05:00
parent 57de78e12a
commit a00fa85d77
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 5 additions and 5 deletions

View File

@ -101,11 +101,11 @@ const options: Options<Required<Args>> = {
"builtin-extensions-dir": { type: "string", path: true }, "builtin-extensions-dir": { type: "string", path: true },
"extra-extensions-dir": { type: "string[]", path: true }, "extra-extensions-dir": { type: "string[]", path: true },
"extra-builtin-extensions-dir": { type: "string[]", path: true }, "extra-builtin-extensions-dir": { type: "string[]", path: true },
"list-extensions": { type: "boolean", description: "Listed installed extensions." }, "list-extensions": { type: "boolean", description: "List installed VS Code extensions." },
force: { type: "boolean" }, force: { type: "boolean", description: "Avoid prompts when installing VS Code extensions." },
"install-extension": { type: "string[]", description: "Install or update an extension by id or vsix." }, "install-extension": { type: "string[]", description: "Install or update a VS Code extension by id or vsix." },
"uninstall-extension": { type: "string[]" }, "uninstall-extension": { type: "string[]", description: "Uninstall a VS Code extension by id." },
"show-versions": { type: "boolean", description: "Show extension versions." }, "show-versions": { type: "boolean", description: "Show VS Code extension versions." },
locale: { type: "string" }, locale: { type: "string" },
log: { type: LogLevel }, log: { type: LogLevel },