mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:51:28 +08:00
21 lines
431 B
TypeScript
21 lines
431 B
TypeScript
import { exec } from '../utils/exec';
|
|
import type { Task } from '../task';
|
|
|
|
export const bootstrap: Task = {
|
|
before: [],
|
|
async ready() {
|
|
// It isn't really possible to tell if bootstrapping is required
|
|
return false;
|
|
},
|
|
async run() {
|
|
return exec(
|
|
'yarn bootstrap --core',
|
|
{},
|
|
{
|
|
startMessage: '🥾 Bootstrapping',
|
|
errorMessage: '❌ Failed to bootstrap',
|
|
}
|
|
);
|
|
},
|
|
};
|