Skip to content

Commit 9fb33dc

Browse files
committed
Add flag to cli.ts
1 parent 7b982ae commit 9fb33dc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/node/cli.ts

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export interface Args extends VsArgs {
4040
readonly force?: boolean
4141
readonly "list-extensions"?: boolean
4242
readonly "install-extension"?: string[]
43+
readonly "enable-proposed-api"?: string[]
4344
readonly "show-versions"?: boolean
4445
readonly "uninstall-extension"?: string[]
4546
readonly "proxy-domain"?: string[]
@@ -126,6 +127,7 @@ const options: Options<Required<Args>> = {
126127
"list-extensions": { type: "boolean", description: "List installed VS Code extensions." },
127128
force: { type: "boolean", description: "Avoid prompts when installing VS Code extensions." },
128129
"install-extension": { type: "string[]", description: "Install or update a VS Code extension by id or vsix." },
130+
"enable-proposed-api": { type: "string[]", description: "Enable Proposed (beta) API for VS Code extensions by id." },
129131
"uninstall-extension": { type: "string[]", description: "Uninstall a VS Code extension by id." },
130132
"show-versions": { type: "boolean", description: "Show VS Code extension versions." },
131133
"proxy-domain": { type: "string[]", description: "Domain used for proxying ports." },

0 commit comments

Comments
 (0)