mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
30 lines
760 B
JavaScript
30 lines
760 B
JavaScript
|
function load(envName) {
|
||
|
const envOverrides = {
|
||
|
'production': () => require('./config/production.json'),
|
||
|
'qa': () => require('./config/qa.json'),
|
||
|
'development': () => require('./config/development.json'),
|
||
|
};
|
||
|
|
||
|
const baseConfig = require('./config/base.json');
|
||
|
const overrideConfig = envOverrides.hasOwnProperty(envName) ? envOverrides[envName]() : {};
|
||
|
|
||
|
return {
|
||
|
...baseConfig,
|
||
|
...overrideConfig
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function log(configObj) {
|
||
|
const repeatNum = 50
|
||
|
console.log(`${"=".repeat(repeatNum)}\nenvConfig`)
|
||
|
Object.entries(configObj).map(([key, value]) => {
|
||
|
console.log(` ${key}: ${value}`)
|
||
|
})
|
||
|
console.log(`${"=".repeat(repeatNum)}`)
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
load,
|
||
|
log
|
||
|
};
|