(projectDir: string, platform: string)
| 22 | } |
| 23 | |
| 24 | export function cleanup(projectDir: string, platform: string) { |
| 25 | const filename = |
| 26 | platform === 'ios' ? 'index.jsbundle' : 'index.android.bundle'; |
| 27 | rimraf.sync(path.resolve(projectDir, filename)); |
| 28 | rimraf.sync(path.resolve(projectDir, `${filename}.map`)); |
| 29 | } |
no outgoing calls
no test coverage detected