0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

Formatted

This commit is contained in:
JuanM04 2022-04-02 18:56:13 -03:00
parent 8b7e790db8
commit 4a5dfc198c

View file

@ -4,7 +4,8 @@ import fs from 'fs/promises';
import esbuild from 'esbuild';
import { fileURLToPath } from 'url';
const writeJson = (path: PathLike, data: any) => fs.writeFile(path, JSON.stringify(data), { encoding: 'utf-8' });
const writeJson = (path: PathLike, data: any) =>
fs.writeFile(path, JSON.stringify(data), { encoding: 'utf-8' });
const ENTRYFILE = '__astro_entry';