2022-10-13 12:30:56 +02:00

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