( environment: Environment, options: Options, )
| 25 | } |
| 26 | |
| 27 | export async function writeConfigFileToEnvironment( |
| 28 | environment: Environment, |
| 29 | options: Options, |
| 30 | ) { |
| 31 | await environment.writeFile( |
| 32 | joinPaths(options.targetDir, CONFIG_FILE), |
| 33 | JSON.stringify(createPersistedOptions(options), null, 2), |
| 34 | ) |
| 35 | } |
nothing calls this directly
no test coverage detected