storybook/scripts/tasks/bootstrap-repo.ts
2022-09-27 12:21:21 +10:00

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