fix(medusa-core-utils): getConfigFile typings (#2783)

* fix: getConfigFile typeings

* Create brave-apes-carry.md

Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Adrien de Peretti
2022-12-14 19:35:16 +01:00
committed by GitHub
parent 7d28eaf8c6
commit 7cced6006a
3 changed files with 13 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
---
"medusa-core-utils": patch
"@medusajs/medusa": patch
---
fix: getConfigFile typings

View File

@@ -9,21 +9,20 @@ import { join } from "path"
function getConfigFile<TConfig = unknown>(
rootDir: string,
configName: string
): { configModule: TConfig; configFilePath: string } | { error: any } {
): { configModule: TConfig; configFilePath: string, error?: any } {
const configPath = join(rootDir, configName)
let configFilePath = ``
let configModule
let err
try {
configFilePath = require.resolve(configPath)
configModule = require(configFilePath)
} catch (err) {
return {
error: err,
}
} catch (e) {
err = e
}
return { configModule, configFilePath }
return { configModule, configFilePath, error: err }
}
export default getConfigFile

View File

@@ -20,13 +20,10 @@ export const handleConfigError = (error: Error): void => {
}
export default (rootDirectory: string): ConfigModule => {
const { configModule, error } = getConfigFile(
const { configModule, error } = getConfigFile<ConfigModule>(
rootDirectory,
`medusa-config`
) as {
configModule: ConfigModule
error: Error | null
}
)
if (error) {
handleConfigError(error)