(baseFilename)
| 150 | * @returns |
| 151 | */ |
| 152 | const getRcConfig = async (baseFilename) => { |
| 153 | const localConfig = await getRcLocalConfig(baseFilename) |
| 154 | const globalConfig = await getRcGlobalConfig(baseFilename) |
| 155 | return _.merge(globalConfig, localConfig) |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Saves .{baseFilename}rc file and includes meta information |
no test coverage detected