From 25893fcbd307fa61f1e2858b6d5fdd50f16ae8c3 Mon Sep 17 00:00:00 2001 From: Dallas Fraser Date: Thu, 19 Sep 2024 12:48:59 -0400 Subject: [PATCH] feat(maker-wix): Expose the property associateExtensions (#3674) See here for documentation https://js.electronforge.io/classes/_electron_forge_maker_wix.InternalOptions.MSICreator.html#associateExtensions --- packages/maker/wix/src/Config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/maker/wix/src/Config.ts b/packages/maker/wix/src/Config.ts index 893d8576b8..7185711f14 100644 --- a/packages/maker/wix/src/Config.ts +++ b/packages/maker/wix/src/Config.ts @@ -7,6 +7,10 @@ export interface MakerWixConfig { * your app by Squirrel. */ appUserModelId?: string; + /** + * A comma separated string of extensions with each to be associated the app icon. + */ + associateExtensions?: string; /** * The app's description */