yaml-config-node
yaml-config-node copied to clipboard
Default is development?
In the yaml there's a default section.
However in readConfig it defaults to development.
if (!env) {
env = process.env.NODE_ENV || 'development';
}
This causes the particular problem that default values are not used when you don't specify a NODE_ENV.