Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion packages/api/core/src/util/forge-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,14 @@ export default async (dir: string): Promise<ResolvedForgeConfig> => {
forgeConfig = packageJSON.config && packageJSON.config.forge ? packageJSON.config.forge : null;
}

if (!forgeConfig || typeof forgeConfig === 'string') {
if (forgeConfig && typeof forgeConfig === 'string') {
const pathToConfig = path.resolve(dir, forgeConfig);
if (!rechoir.prepare(interpret.extensions, pathToConfig, dir)) {
throw new Error(`Not found interpret for config file: ${pathToConfig}`);
}
}

if (!forgeConfig) {
for (const extension of ['.js', ...Object.keys(interpret.extensions)]) {
const pathToConfig = path.resolve(dir, `forge.config${extension}`);
if (await fs.pathExists(pathToConfig)) {
Expand Down