(isYarnUsed?: boolean)
| 144 | } |
| 145 | |
| 146 | export function getPkgManagerCommand(isYarnUsed?: boolean): string { |
| 147 | return ( |
| 148 | (isYarnUsed ? 'yarn' : 'npm') + (process.platform === 'win32' ? '.cmd' : '') |
| 149 | ); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Find the tsconfig.json, read it, and return parsed contents. |
no outgoing calls
no test coverage detected
searching dependent graphs…