diff options
author | 2021-08-09 21:37:23 +0000 | |
---|---|---|
committer | 2021-08-09 21:37:23 +0000 | |
commit | c7c073603fd1ae80bbf9034c9ec89a799928d822 (patch) | |
tree | 41eae60122c00d4d6a695224a1232eeb4e77d8b8 | |
parent | 618ea3a8ea8155e80e61f6a4718f6661d6297997 (diff) | |
download | astro-c7c073603fd1ae80bbf9034c9ec89a799928d822.tar.gz astro-c7c073603fd1ae80bbf9034c9ec89a799928d822.tar.zst astro-c7c073603fd1ae80bbf9034c9ec89a799928d822.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/src/internal/__astro_component.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/astro/src/internal/__astro_component.ts b/packages/astro/src/internal/__astro_component.ts index 0543df203..bc850d99c 100644 --- a/packages/astro/src/internal/__astro_component.ts +++ b/packages/astro/src/internal/__astro_component.ts @@ -18,9 +18,10 @@ const customGenerator: Generator = { } }, }; -const serialize = (value: Value) => generate(valueToEstree(value), { - generator: customGenerator, -}); +const serialize = (value: Value) => + generate(valueToEstree(value), { + generator: customGenerator, + }); export interface RendererInstance { source: string | null; |