From f05c8e1dc69275e529f4c8771ad55ba211e7fb5e Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Thu, 2 Jun 2022 00:30:43 +0200 Subject: [PATCH] fix(lint): missing dangling comma --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 926fa082..9837cb46 100644 --- a/src/config.ts +++ b/src/config.ts @@ -59,7 +59,7 @@ export const config = figue({ .loadEnv({ ...import.meta.env, // Because the string 'import.meta.env.PACKAGE_VERSION' is statically replaced during build time (see 'define' in vite.config.ts) - PACKAGE_VERSION: import.meta.env.PACKAGE_VERSION + PACKAGE_VERSION: import.meta.env.PACKAGE_VERSION, }) .validate() .getConfig();