storybook/scripts/tasks/install.ts
2024-10-02 17:07:43 +02:00

20 lines
594 B
TypeScript

// eslint-disable-next-line depend/ban-dependencies
import { pathExists, remove } from 'fs-extra';
import { join } from 'path';
import type { Task } from '../task';
import { checkDependencies } from '../utils/cli-utils';
export const install: Task = {
description: 'Install the dependencies of the monorepo',
async ready({ codeDir }) {
return pathExists(join(codeDir, 'node_modules'));
},
async run({ codeDir }) {
await checkDependencies();
// these are webpack4 types, we we should never use
await remove(join(codeDir, 'node_modules', '@types', 'webpack'));
},
};