mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
15 lines
446 B
TypeScript
15 lines
446 B
TypeScript
import { pathExists } from 'fs-extra';
|
|
import { join } from 'path';
|
|
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
|
|
export const install: Task = {
|
|
description: 'Install the dependencies of the monorepo',
|
|
async ready({ codeDir }) {
|
|
return pathExists(join(codeDir, 'node_modules'));
|
|
},
|
|
async run({ codeDir }, { dryRun, debug }) {
|
|
return exec(`yarn install`, { cwd: codeDir }, { dryRun, debug });
|
|
},
|
|
};
|