diff options
author | 2022-05-24 19:40:24 +0000 | |
---|---|---|
committer | 2022-05-24 19:40:24 +0000 | |
commit | 03b2ef4b672a60d29eb81782912e7dadffb38c9a (patch) | |
tree | f79c75c32d3611d15e939e580b077389fbed2f33 | |
parent | 4ca60e9344f882ee1a216ec66fb409c88c740641 (diff) | |
download | astro-03b2ef4b672a60d29eb81782912e7dadffb38c9a.tar.gz astro-03b2ef4b672a60d29eb81782912e7dadffb38c9a.tar.zst astro-03b2ef4b672a60d29eb81782912e7dadffb38c9a.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/build/static-build.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/build/static-build.ts b/packages/astro/src/core/build/static-build.ts index f101f6a3d..3fa065373 100644 --- a/packages/astro/src/core/build/static-build.ts +++ b/packages/astro/src/core/build/static-build.ts @@ -95,7 +95,7 @@ export async function staticBuild(opts: StaticBuildOptions) { const pages = internals.hoistedScriptIdToPagesMap.get(moduleId); pages!.add(astroModuleId); } else { - internals.hoistedScriptIdToPagesMap.set(moduleId, new Set([astroModuleId])) + internals.hoistedScriptIdToPagesMap.set(moduleId, new Set([astroModuleId])); internals.hoistedScriptIdToHoistedMap.set(moduleId, hoistedScripts); } } |