From f2dfdb7e735bf701407b6e80115b225b0a0fe457 Mon Sep 17 00:00:00 2001 From: matthewp Date: Mon, 13 Mar 2023 17:19:15 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/build/plugins/plugin-analyzer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/core/build/plugins/plugin-analyzer.ts b/packages/astro/src/core/build/plugins/plugin-analyzer.ts index 99e986a6ed5b..e90063f284a8 100644 --- a/packages/astro/src/core/build/plugins/plugin-analyzer.ts +++ b/packages/astro/src/core/build/plugins/plugin-analyzer.ts @@ -139,7 +139,7 @@ export function vitePluginAnalyzer(internals: BuildInternals): VitePlugin { const rid = c.resolvedPath ? decodeURI(c.resolvedPath) : c.specifier; if (internals.discoveredHydratedComponents.has(rid)) { const exportNames = internals.discoveredHydratedComponents.get(rid); - exportNames?.push(c.exportName) + exportNames?.push(c.exportName); } else { internals.discoveredHydratedComponents.set(rid, [c.exportName]); } @@ -155,7 +155,7 @@ export function vitePluginAnalyzer(internals: BuildInternals): VitePlugin { const cid = c.resolvedPath ? decodeURI(c.resolvedPath) : c.specifier; if (internals.discoveredClientOnlyComponents.has(cid)) { const exportNames = internals.discoveredClientOnlyComponents.get(cid); - exportNames?.push(c.exportName) + exportNames?.push(c.exportName); } else { internals.discoveredClientOnlyComponents.set(cid, [c.exportName]); }