fix(package): update cosmiconfig to version 5.0.0
This commit is contained in:
parent
1ed466e337
commit
349b2e8d77
@ -7,8 +7,19 @@ const {repoUrl} = require('./git');
|
|||||||
const PLUGINS_DEFINITIONS = require('./definitions/plugins');
|
const PLUGINS_DEFINITIONS = require('./definitions/plugins');
|
||||||
const plugins = require('./plugins');
|
const plugins = require('./plugins');
|
||||||
|
|
||||||
|
const CONFIG_NAME = 'release';
|
||||||
|
const CONFIG_FILES = [
|
||||||
|
'package.json',
|
||||||
|
`.${CONFIG_NAME}rc`,
|
||||||
|
`.${CONFIG_NAME}rc.json`,
|
||||||
|
`.${CONFIG_NAME}rc.yaml`,
|
||||||
|
`.${CONFIG_NAME}rc.yml`,
|
||||||
|
`.${CONFIG_NAME}rc.js`,
|
||||||
|
`${CONFIG_NAME}.config.js`,
|
||||||
|
];
|
||||||
|
|
||||||
module.exports = async (opts, logger) => {
|
module.exports = async (opts, logger) => {
|
||||||
const {config} = (await cosmiconfig('release', {rcExtensions: true}).load(process.cwd())) || {};
|
const {config} = (await cosmiconfig(CONFIG_NAME, {searchPlaces: CONFIG_FILES}).search()) || {};
|
||||||
// Merge config file options and CLI/API options
|
// Merge config file options and CLI/API options
|
||||||
let options = {...config, ...opts};
|
let options = {...config, ...opts};
|
||||||
const pluginsPath = {};
|
const pluginsPath = {};
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"@semantic-release/release-notes-generator": "^6.0.0",
|
"@semantic-release/release-notes-generator": "^6.0.0",
|
||||||
"aggregate-error": "^1.0.0",
|
"aggregate-error": "^1.0.0",
|
||||||
"chalk": "^2.3.0",
|
"chalk": "^2.3.0",
|
||||||
"cosmiconfig": "^4.0.0",
|
"cosmiconfig": "^5.0.1",
|
||||||
"debug": "^3.1.0",
|
"debug": "^3.1.0",
|
||||||
"env-ci": "^2.0.0",
|
"env-ci": "^2.0.0",
|
||||||
"execa": "^0.10.0",
|
"execa": "^0.10.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user