mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
25 lines
603 B
TypeScript
25 lines
603 B
TypeScript
import { pathExists } from 'fs-extra';
|
|
import { resolve } from 'path';
|
|
|
|
import { exec } from '../utils/exec';
|
|
import type { Task } from '../task';
|
|
|
|
export const bootstrapRepo: Task = {
|
|
before: ['install-repo'],
|
|
async ready({ codeDir }) {
|
|
// TODO: Ask norbert
|
|
return pathExists(resolve(codeDir, './lib/store/dist/cjs/index.js'));
|
|
},
|
|
async run() {
|
|
// TODO -- what if they want to do `bootstrap --core`?
|
|
return exec(
|
|
'yarn bootstrap --prep',
|
|
{},
|
|
{
|
|
startMessage: '🥾 Bootstrapping',
|
|
errorMessage: '❌ Failed to bootstrap',
|
|
}
|
|
);
|
|
},
|
|
};
|