mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import detectFreePort from 'detect-port';
|
|
import waitOn from 'wait-on';
|
|
|
|
import { now, saveBench } from '../bench/utils';
|
|
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)
|
|
: 6006;
|
|
|
|
export const dev: Task = {
|
|
description: 'Run the sandbox in development mode',
|
|
service: true,
|
|
dependsOn: ['sandbox'],
|
|
async ready() {
|
|
return (await detectFreePort(PORT)) !== PORT;
|
|
},
|
|
async run({ sandboxDir, selectedTask }, { dryRun, debug }) {
|
|
const controller = new AbortController();
|
|
const devCommand = `yarn storybook --port ${PORT}${selectedTask === 'dev' ? '' : ' --ci'}`;
|
|
const start = now();
|
|
|
|
exec(
|
|
devCommand,
|
|
{ cwd: sandboxDir },
|
|
{ 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;
|
|
}
|
|
});
|
|
const [devPreviewResponsive, devManagerResponsive] = await Promise.all([
|
|
waitOn({ resources: [`http://localhost:${PORT}/iframe.html`], interval: 16 }).then(() => {
|
|
return now() - start;
|
|
}),
|
|
waitOn({ resources: [`http://localhost:${PORT}/index.html`], interval: 16 }).then(() => {
|
|
return now() - start;
|
|
}),
|
|
]);
|
|
|
|
await saveBench(
|
|
'dev',
|
|
{
|
|
devPreviewResponsive,
|
|
devManagerResponsive,
|
|
},
|
|
{ rootDir: sandboxDir }
|
|
);
|
|
|
|
return controller;
|
|
},
|
|
};
|