mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
25 lines
642 B
TypeScript
25 lines
642 B
TypeScript
import { exec } from '../utils/exec';
|
|
import type { Task } from '../task';
|
|
|
|
const command = `nx run-many --target="check" --all --parallel --exclude=@storybook/addon-storyshots,@storybook/addon-storyshots-puppeteer`;
|
|
|
|
export const check: Task = {
|
|
description: 'Compile the source code of the monorepo',
|
|
dependsOn: ['compile'],
|
|
async ready() {
|
|
return false;
|
|
},
|
|
async run({ codeDir }, { dryRun, debug }) {
|
|
return exec(
|
|
command,
|
|
{ cwd: codeDir },
|
|
{
|
|
startMessage: '🥾 Checking types validity',
|
|
errorMessage: '❌ Unsound types detected',
|
|
dryRun,
|
|
debug,
|
|
}
|
|
);
|
|
},
|
|
};
|