From 663c64eb0cc4682483f53858cc447defb4938534 Mon Sep 17 00:00:00 2001 From: Amir Omidi Date: Thu, 9 Aug 2018 09:56:44 -0700 Subject: [PATCH] Update yarn --- src/api.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/api.ts b/src/api.ts index b9f841b7..d022872e 100644 --- a/src/api.ts +++ b/src/api.ts @@ -25,6 +25,11 @@ export interface ICreateVSIXOptions { * The base URL for images detected in Markdown files. */ baseImagesUrl?: string; + + /** + * Should Yarn be used in place of NPM + */ + useYarn?: boolean; } export interface IPublishOptions { @@ -52,6 +57,11 @@ export interface IPublishOptions { * The base URL for images detected in Markdown files. */ baseImagesUrl?: string; + + /** + * Should Yarn be used in place of NPM + */ + useYarn?: boolean; } /** @@ -93,6 +103,11 @@ export interface IPublishVSIXOptions { * The base URL for images detected in Markdown files. */ baseImagesUrl?: string; + + /** + * Should Yarn be used in place of NPM + */ + useYarn?: boolean; } /** @@ -121,4 +136,4 @@ export function listFiles(options: IListFilesOptions = {}): Promise { */ export function publishVSIX(packagePath: string, options: IPublishVSIXOptions = {}): Promise { return _publish({ packagePath, ...options }); -} \ No newline at end of file +}