317daf5549
refs #7491 - split themes_spec up into several files - clean up the code for configuration - ensure its tested
14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
var _ = require('lodash'),
|
|
defaultConfig = require('./defaults'),
|
|
allowedKeys = ['posts_per_page'];
|
|
|
|
module.exports.create = function configLoader(packageJson) {
|
|
var config = _.cloneDeep(defaultConfig);
|
|
|
|
if (packageJson && packageJson.hasOwnProperty('config')) {
|
|
config = _.assign(config, _.pick(packageJson.config, allowedKeys));
|
|
}
|
|
|
|
return config;
|
|
};
|