From 6bed4afb6ea550964352b89c16dd7ec3b0b14362 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 7 Sep 2023 22:39:26 +0000 Subject: [PATCH] chore: format --- plugin-remix.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-remix.js b/plugin-remix.js index 21947da..372fa78 100644 --- a/plugin-remix.js +++ b/plugin-remix.js @@ -21,7 +21,7 @@ export default { lastTimeout = setTimeout(async () => { const contents = fs.readFileSync( path.resolve(process.cwd(), buildPath), - "utf8" + "utf8", ); const manifestMatches = contents.matchAll(/manifest-([A-f0-9]+)\.js/g); const sent = new Set(); @@ -41,7 +41,7 @@ export default { const passthruKeys = /^NODE_ENV$|^REMIX_DEV_/; return { testing: Object.fromEntries( - Object.entries(process.env).filter(([key]) => passthruKeys.test(key)) + Object.entries(process.env).filter(([key]) => passthruKeys.test(key)), ), }; },