(filePath: string, content: object)
| 144 | }; |
| 145 | |
| 146 | export const writeJson = (filePath: string, content: object) => { |
| 147 | hfs.write(filePath, JSON.stringify(content, null, 2)); |
| 148 | log.write(filePath); |
| 149 | }; |
| 150 | |
| 151 | type FormatOptions = { indent?: Indent } & ( |
| 152 | | { |
no outgoing calls
no test coverage detected
searching dependent graphs…