mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:31:06 +08:00
14 lines
391 B
TypeScript
14 lines
391 B
TypeScript
import { pathExists } from 'fs-extra';
|
|
import { join } from 'path';
|
|
import type { Task } from '../task';
|
|
import { exec } from '../utils/exec';
|
|
|
|
export const installRepo: Task = {
|
|
async ready({ codeDir }) {
|
|
return pathExists(join(codeDir, 'node_modules'));
|
|
},
|
|
async run({ codeDir }, { dryRun, debug }) {
|
|
return exec(`yarn install`, { cwd: codeDir }, { dryRun, debug });
|
|
},
|
|
};
|