(filePath: string, contents: string)
| 56 | } |
| 57 | |
| 58 | export async function writeStringFile(filePath: string, contents: string) { |
| 59 | await writeFile(filePath, Buffer.from(contents, 'utf-8')) |
| 60 | } |
| 61 | |
| 62 | export async function writeFile(filePath: string, contents: Buffer) { |
| 63 | if (process.env.CI && !process.env.ALLOW_REFRESH_ASSETS_CHANGES) { |
no test coverage detected
searching dependent graphs…