storybook/scripts/tasks/bootstrap-repo.ts
2022-10-05 16:47:03 +11:00

41 lines
1.2 KiB
TypeScript

import { readFile } from 'fs-extra';
import { resolve } from 'path';
import { maxConcurrentTasks } from '../utils/maxConcurrentTasks';
import { exec } from '../utils/exec';
import type { Task } from '../task';
const linkedContents = `export * from '../../src/index';`;
const linkCommand = `nx run-many --target="prep" --all --parallel --exclude=@storybook/addon-storyshots,@storybook/addon-storyshots-puppeteer -- --reset`;
const noLinkCommand = `nx run-many --target="prep" --all --parallel=8 ${
process.env.CI ? `--max-parallel=${maxConcurrentTasks}` : ''
} -- --reset --optimized`;
export const bootstrapRepo: Task = {
before: ['install-repo'],
async ready({ codeDir }, { link }) {
try {
const contents = await readFile(
resolve(codeDir, './lib/store/dist/types/index.d.ts'),
'utf8'
);
if (link) return contents === linkedContents;
return contents !== linkedContents;
} catch (err) {
return false;
}
},
async run({ codeDir }, { link, dryRun, debug }) {
return exec(
link ? linkCommand : noLinkCommand,
{ cwd: codeDir },
{
startMessage: '🥾 Bootstrapping',
errorMessage: '❌ Failed to bootstrap',
dryRun,
debug,
}
);
},
};