Skip to content

Commit

Permalink
Merge pull request #808 from renative-org/fix/config-extend
Browse files Browse the repository at this point in the history
[fix] config extend property stopped working
  • Loading branch information
pavjacko committed Feb 15, 2022
2 parents 5e481f6 + 06cd548 commit d004a6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/rnv/src/core/configManager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export const generateBuildConfig = (c) => {
};

export const loadFileExtended = (c, fileObj, pathObj, key) => {
loadFile(fileObj, pathObj, key);
const result = loadFile(fileObj, pathObj, key);
if (fileObj[key]) {
fileObj[`${key}_original`] = { ...fileObj[key] };
}
Expand Down Expand Up @@ -273,6 +273,7 @@ export const loadFileExtended = (c, fileObj, pathObj, key) => {
}
}
}
return result;
};

const _loadConfigFiles = (c, fileObj, pathObj, parseAppConfigs) => {
Expand Down

0 comments on commit d004a6c

Please sign in to comment.