mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
|
|
import _ from 'lodash';
|
|
import path from 'path';
|
|
import {parseConfigFile} from '../../../../src/lib/utils';
|
|
|
|
|
|
export default (options, url = 'default.yaml') => {
|
|
const locationFile = path.join(__dirname, `../config/yaml/${url}`);
|
|
const config = parseConfigFile(locationFile);
|
|
|
|
return _.assign({}, _.cloneDeep(config), options);
|
|
}
|