mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:31:08 +08:00
29 lines
857 B
TypeScript
29 lines
857 B
TypeScript
import { AbortController } from 'node-abort-controller';
|
|
import detectFreePort from 'detect-port';
|
|
|
|
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
|
|
export const PORT = 8001;
|
|
export const serve: Task = {
|
|
service: true,
|
|
before: ['build'],
|
|
async ready() {
|
|
return (await detectFreePort(PORT)) !== PORT;
|
|
},
|
|
async run({ sandboxDir, codeDir }, { debug, dryRun }) {
|
|
const controller = new AbortController();
|
|
exec(
|
|
`yarn http-server ${sandboxDir} --port ${PORT}`,
|
|
{ cwd: codeDir },
|
|
{ dryRun, debug, signal: controller.signal as AbortSignal }
|
|
).catch((err) => {
|
|
// If aborted, we want to make sure the rejection is handled.
|
|
if (!err.killed) throw err;
|
|
});
|
|
await exec('yarn wait-on http://localhost:8001', { cwd: codeDir }, { dryRun, debug });
|
|
|
|
return controller;
|
|
},
|
|
};
|