mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:51:25 +08:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { pathExists } from 'fs-extra';
|
|
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
|
|
export const build: Task = {
|
|
before: ['create'],
|
|
async ready(_, { builtSandboxDir }) {
|
|
return pathExists(builtSandboxDir);
|
|
},
|
|
async run(_, { sandboxDir }) {
|
|
return exec(`yarn build-storybook --quiet`, { cwd: sandboxDir });
|
|
},
|
|
};
|