1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 01:51:07 +08:00
Tom Coleman a05bccefbf Created basic task infrastructure,
as well as bootstrap, publish and create tasks
2022-08-12 13:07:07 +10:00

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',
}
);
},
};