Formatted

This commit is contained in:
JuanM04 2022-04-02 18:56:13 -03:00
parent a377ac1efc
commit ccce433994
No known key found for this signature in database
GPG key ID: 0171B712E406271A

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';