ba5e2b5e6c
* Checkpoint, basics are working * Add the `--experimental-ssr` flag * Adds the changeset * Fixes population of getStaticPaths results * Pass through the imported module * Route manifest test * Fix remaining tests * Fix remaining tests * Copy server assets over * Fix types * Allowing passing in the request to the Node version of App * Improve the example app * Gets CI to pass
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
import {execa} from 'execa';
|
|
|
|
const api = execa('npm', ['run', 'dev-api']);
|
|
api.stdout.pipe(process.stdout);
|
|
api.stderr.pipe(process.stderr);
|
|
|
|
const build = execa('yarn', ['astro', 'build', '--experimental-ssr']);
|
|
build.stdout.pipe(process.stdout);
|
|
build.stderr.pipe(process.stderr);
|
|
await build;
|
|
|
|
api.kill();
|