(args: {
workDir: string;
moduleDir: string;
npmClient?: string;
})
| 6 | import { DSLType } from './types'; |
| 7 | |
| 8 | export async function isNPMInstalled(args: { |
| 9 | workDir: string; |
| 10 | moduleDir: string; |
| 11 | npmClient?: string; |
| 12 | }) { |
| 13 | return pathExists(path.join(args.workDir, 'node_modules')); |
| 14 | } |
| 15 | |
| 16 | export async function isNPMModuleInstalled( |
| 17 | args: { workDir: string; moduleDir: string; npmClient?: string }, |
no outgoing calls
no test coverage detected
searching dependent graphs…