We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c2ea2 commit 99aa1f9Copy full SHA for 99aa1f9
src/load-config/load-milirc.js
@@ -30,7 +30,7 @@ module.exports = async cwd => {
30
const result = await explorer.load(filepath)
31
if (!result) return config
32
33
- config = result.config || {}
+ if (result.config) config = JSON.parse(JSON.stringify(result.config))
34
35
if (semver.lt(config.mili.version, '2.0.0')) {
36
config = formatVersion1Config(config)
0 commit comments