UNPKG

hero-engineer

Version:
7 lines (6 loc) 201 B
import { execSync } from 'node:child_process'; // TODO Adjust if yarn must be used async function installDependencies(cwd) { execSync('npm install', { cwd }); } export default installDependencies;