summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-03-13 17:19:15 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-03-13 17:19:15 +0000
commitf2dfdb7e735bf701407b6e80115b225b0a0fe457 (patch)
treeae3bd1ea02ddef0bca7ac45b491abf8da0f7dd50
parent04e624d062c6ce385f6293afba26f3942c2290c6 (diff)
downloadastro-f2dfdb7e735bf701407b6e80115b225b0a0fe457.tar.gz
astro-f2dfdb7e735bf701407b6e80115b225b0a0fe457.tar.zst
astro-f2dfdb7e735bf701407b6e80115b225b0a0fe457.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/src/core/build/plugins/plugin-analyzer.ts4
1 files 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 99e986a6e..e90063f28 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]);
}