(filePath: string, conflicts: any)
| 77 | } |
| 78 | |
| 79 | writeConflictsFile(filePath: string, conflicts: any): FileSystem { |
| 80 | return this.writeJsonFile(filePath, { conflicts }) |
| 81 | } |
| 82 | |
| 83 | writeJsonFile(filePath: string, data: any): FileSystem { |
| 84 | return this.writeFile(filePath, JSON.stringify(data, null, 4)) |
no test coverage detected