From 9fb33dce3d8f4854163c978ef02bdd06f1983722 Mon Sep 17 00:00:00 2001 From: giddyuptiger <65830808+giddyuptiger@users.noreply.github.com> Date: Sat, 6 Jun 2020 13:44:57 -0700 Subject: [PATCH] Add flag to cli.ts --- src/node/cli.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/node/cli.ts b/src/node/cli.ts index e3072b1d35c9..95286c6afc43 100644 --- a/src/node/cli.ts +++ b/src/node/cli.ts @@ -40,6 +40,7 @@ export interface Args extends VsArgs { readonly force?: boolean readonly "list-extensions"?: boolean readonly "install-extension"?: string[] + readonly "enable-proposed-api"?: string[] readonly "show-versions"?: boolean readonly "uninstall-extension"?: string[] readonly "proxy-domain"?: string[] @@ -126,6 +127,7 @@ const options: Options> = { "list-extensions": { type: "boolean", description: "List installed VS Code extensions." }, force: { type: "boolean", description: "Avoid prompts when installing VS Code extensions." }, "install-extension": { type: "string[]", description: "Install or update a VS Code extension by id or vsix." }, + "enable-proposed-api": { type: "string[]", description: "Enable Proposed (beta) API for VS Code extensions by id." }, "uninstall-extension": { type: "string[]", description: "Uninstall a VS Code extension by id." }, "show-versions": { type: "boolean", description: "Show VS Code extension versions." }, "proxy-domain": { type: "string[]", description: "Domain used for proxying ports." },