(configPath = defaultConfigPath)
| 68206 | }; |
| 68207 | }; |
| 68208 | var setGlobalConfig = (config8, configPath = defaultConfigPath) => { |
| 68209 | (0, import_fs.writeFileSync)(configPath, (0, import_ini.stringify)(config8), "utf8"); |
| 68210 | }; |
| 68211 | var getIsGlobalConfigFileExist = (configPath = defaultConfigPath) => { |
| 68212 | return (0, import_fs.existsSync)(configPath); |
| 68213 | }; |
| 68214 | var getGlobalConfig = (configPath = defaultConfigPath) => { |
| 68215 | const isGlobalConfigFileExist = getIsGlobalConfigFileExist(configPath); |
| 68216 | if (!isGlobalConfigFileExist) { |
| 68217 | return { ...DEFAULT_CONFIG }; |
| 68218 | } |
no test coverage detected
searching dependent graphs…