Michael Shilman 55d37ff6a9
Merge pull request #19907 from storybookjs/tom/sb-741-docs2-sb19163-addon-docs-docspage-story
Docs: Fix ordering of entries in `Stories` block
2022-11-21 21:11:32 +08:00

31 lines
962 B
TypeScript

import detectFreePort from 'detect-port';
import type { Task } from '../task';
import { exec } from '../utils/exec';
export const PORT = process.env.STORYBOOK_SERVE_PORT
? parseInt(process.env.STORYBOOK_SERVE_PORT, 10)
: 8001;
export const serve: Task = {
description: 'Serve the build storybook for a sandbox',
service: true,
dependsOn: ['build'],
async ready() {
return (await detectFreePort(PORT)) !== PORT;
},
async run({ builtSandboxDir, codeDir }, { debug, dryRun }) {
const controller = new AbortController();
exec(
`yarn http-server ${builtSandboxDir} --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:${PORT}`, { cwd: codeDir }, { dryRun, debug });
return controller;
},
};