(
{ tree, format, configFilename }: WriteContext,
results: PluginCodegenResult[],
)
| 111 | } |
| 112 | |
| 113 | async function writeStandaloneConfig( |
| 114 | { tree, format, configFilename }: WriteContext, |
| 115 | results: PluginCodegenResult[], |
| 116 | ): Promise<void> { |
| 117 | await tree.write(configFilename, generateConfigSource(results, format)); |
| 118 | } |
| 119 | |
| 120 | async function writeMonorepoConfigs( |
| 121 | { tree, format, configFilename, isEsm }: WriteContext, |
no test coverage detected