(config)
| 983 | }; |
| 984 | |
| 985 | const saveConfig = (config) => { |
| 986 | const configPath = getConfigPath(); |
| 987 | if (!configPath) throw new Error('No config path found'); |
| 988 | atomicWriteFileSync(configPath, JSON.stringify(config, null, 2)); |
| 989 | }; |
| 990 | |
| 991 | const aggregateModels = () => { |
| 992 | const roots = getSearchRoots(); |
no test coverage detected