added invoiceOut descriptor #377

Merged
carlosjr merged 5 commits from 2446-ticket_index_overlap_ref_and_state into dev 2020-09-14 14:41:21 +00:00
1 changed files with 5 additions and 4 deletions
Showing only changes of commit f7a5b4bdce - Show all commits

View File

@ -13,14 +13,15 @@ let configFiles = [
];
for (let configFile of configFiles) {
const filePath = path.join(__dirname, configFile);
if (fs.existsSync(filePath)) {
const conf = require(filePath);
if (!configFile.includes(configPath))
configFile = path.join(__dirname, configFile);
if (fs.existsSync(configFile)) {
const conf = require(configFile);
for (let prop in conf)
Object.assign(config[prop], conf[prop]);
}
}
config.env = env;
module.exports = config;