Catch errors when resolving config and creating context

master
Brad Cornes 2021-10-29 17:49:42 +01:00
parent ecdfc1a98e
commit e786ece8c3
1 changed files with 14 additions and 9 deletions

View File

@ -857,6 +857,7 @@ async function createProjectService(
throw new SilentError(`Failed to load config file: ${state.configPath}`)
}
try {
state.config = resolveConfig.module(originalConfig)
state.separator = state.config.separator
@ -869,6 +870,10 @@ async function createProjectService(
})
}
}
} catch (error) {
hook.unhook()
throw error
}
let postcssResult: Result