From cdaa5514c41a0f26da4bf78b53a19d79589f33b2 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Mon, 9 Sep 2019 06:50:08 +0200 Subject: [PATCH] fix: platform assign --- lib/platform/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/platform/index.ts b/lib/platform/index.ts index de97dc3d3e..e963fcae47 100644 --- a/lib/platform/index.ts +++ b/lib/platform/index.ts @@ -19,11 +19,11 @@ const platforms = new Map<string, Platform>([ /* eslint-enable global-require */ // eslint-disable-next-line import/no-mutable-exports -export let platform: Platform; +export const platform: Platform = {} as any; // TODO: lazy load platform export function setPlatformApi(name: string) { - platform = platforms.get(name); + Object.assign(platform, platforms.get(name)); } export async function initPlatform(config: RenovateConfig) { -- GitLab