UNPKG

@schemifyjs/schematics

Version:

Reusable schematics for scaffolding SchemifyJS projects.

5 lines (4 loc) 144 B
import { execa } from 'execa'; export async function runInstallCommand(cwd) { await execa('npm', ['install'], { cwd, stdio: 'inherit' }); }