From 507fd82e7818104b434d3096b42718b6b1ea1159 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Mon, 3 Jan 2022 20:24:16 +0100 Subject: [PATCH] fix: add preRelease flag to api (#679) --- src/api.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api.ts b/src/api.ts index 21d3d14b..87ec33fc 100644 --- a/src/api.ts +++ b/src/api.ts @@ -35,6 +35,11 @@ export interface IBaseVSIXOptions { * https://code.visualstudio.com/api/working-with-extensions/publishing-extension#platformspecific-extensions */ target?: string; + + /** + * Mark this package as a pre-release + */ + preRelease?: boolean; } export interface ICreateVSIXOptions extends IBaseVSIXOptions {