4cf54c60aa
* Netlify Edge function support * Update readme with edge function information * Adds a changeset * Disable running edge function test in CI for now
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
// @ts-ignore
|
|
import { fromFileUrl } from './deps.ts';
|
|
const dir = new URL('./', import.meta.url);
|
|
|
|
export async function runBuild(fixturePath: string) {
|
|
// @ts-ignore
|
|
let proc = Deno.run({
|
|
cmd: ['node', '../../../../../../astro/astro.js', 'build', '--silent'],
|
|
cwd: fromFileUrl(new URL(fixturePath, dir)),
|
|
});
|
|
await proc.status();
|
|
return async () => await proc.close();
|
|
}
|