Formatted
This commit is contained in:
parent
a377ac1efc
commit
ccce433994
1 changed files with 2 additions and 1 deletions
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in a new issue