From f23019e26677caac5001e2af87a6d24e57e016f7 Mon Sep 17 00:00:00 2001 From: trickypr Date: Fri, 12 Nov 2021 17:59:08 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Don't=20specify=20a=20firefox=20?= =?UTF-8?q?version=20for=20empty=20config=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/config.ts b/src/utils/config.ts index 46fe087..ebf21d8 100644 --- a/src/utils/config.ts +++ b/src/utils/config.ts @@ -54,7 +54,7 @@ export interface Config { /** * The version of the selected product you are forking */ - version: string + version?: string /** * The version of your output product. E.g. 1.3.5 * This is in relation to the product you are building. For example, for @@ -70,7 +70,6 @@ const defaultConfig: Config = { appId: 'unknown.appid', version: { product: SupportedProducts.Firefox, - version: '92.0', displayVersion: '1.0.0', }, }