UNPKG

@netlify/framework-info

Version:

Framework detection utility

10 lines (9 loc) 342 B
import { dirname } from 'path'; // Retrieve the command to run `package.json` `scripts` commands export const getRunScriptCommand = async function ({ pathExists, packageJsonPath, }) { const yarnExists = await pathExists(`${dirname(packageJsonPath)}/yarn.lock`); if (yarnExists) { return 'yarn'; } return 'npm run'; };