()
| 355 | } |
| 356 | |
| 357 | function checkYarnExists(): boolean { |
| 358 | try { |
| 359 | childProcess.execSync('yarn --version'); |
| 360 | return true; |
| 361 | } catch (e) { |
| 362 | return false; |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | export async function prepareProjectScaffold(projectPath: string): Promise<void> { |
| 367 | // remove all existing abis & handler files |
no outgoing calls
no test coverage detected