Skip to content

Commit

Permalink
fix: updated dev deps and cosmiconfig to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
prisis committed Dec 3, 2023
1 parent f0dcfbf commit 569e401
Show file tree
Hide file tree
Showing 4 changed files with 900 additions and 906 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.8.0
20.10.0
2 changes: 1 addition & 1 deletion lib/get-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const CONFIG_FILES = [
*/
export default async function getConfig(cwd) {
// Call cosmiconfig.
const config = await cosmiconfig(CONFIG_NAME, { searchPlaces: CONFIG_FILES }).search(cwd);
const config = await cosmiconfig(CONFIG_NAME, { mergeSearchPlaces: false, searchPlaces: CONFIG_FILES }).search(cwd);

// Return the found config or empty object.
// istanbul ignore next (not important).
Expand Down
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@anolilab/multi-semantic-release",
"version": "1.0.2",
"description": "A multi semantic release tool for monorepos.",
"description": "A multi semantic release tool for a monorepo.",
"repository": {
"type": "git",
"url": "https://github.com/anolilab/multi-semantic-release.git"
Expand Down Expand Up @@ -49,7 +49,7 @@
"dependencies": {
"@semrel-extra/topo": "^1.14.0",
"blork": "^9.3.0",
"cosmiconfig": "^8.3.6",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.4",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
Expand All @@ -63,49 +63,50 @@
"yargs": "^17.7.2"
},
"devDependencies": {
"@anolilab/commitlint-config": "^5.0.0",
"@anolilab/eslint-config": "^14.0.19",
"@anolilab/lint-staged-config": "^2.0.15",
"@anolilab/prettier-config": "^5.0.11",
"@anolilab/textlint-config": "^8.0.13",
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "7.22.15",
"@commitlint/config-conventional": "^17.7.0",
"@secretlint/secretlint-rule-preset-recommend": "^7.0.7",
"@anolilab/commitlint-config": "^5.0.2",
"@anolilab/eslint-config": "^15.0.2",
"@anolilab/lint-staged-config": "^2.1.6",
"@anolilab/prettier-config": "^5.0.13",
"@anolilab/textlint-config": "^8.0.15",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@secretlint/secretlint-rule-preset-recommend": "^8.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/github": "^9.2.4",
"@semantic-release/npm": "^11.0.1",
"@vitest/coverage-v8": "^0.34.6",
"commitizen": "^4.3.0",
"commitlint": "^17.7.2",
"commitlint": "^18.4.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"eslint": "^8.55.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "npm:eslint-plugin-i@2.28.1",
"eslint-plugin-import": "npm:eslint-plugin-i@2.29.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-vitest": "^0.3.2",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-vitest": "^0.3.10",
"eslint-plugin-vitest-globals": "^1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
"file-url": "^4.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"secretlint": "7.0.7",
"semantic-release": "^22.0.5",
"secretlint": "8.0.0",
"semantic-release": "^22.0.8",
"sort-package-json": "^2.6.0",
"tempy": "^3.1.0",
"textlint": "^13.3.3",
"textlint": "^13.4.1",
"vitest": "^0.34.6"
},
"peerDependencies": {
"semantic-release": "^20.0 || ^21.0 || >=22.0.3"
},
"packageManager": "pnpm@8.9.0",
"packageManager": "pnpm@8.11.0",
"engines": {
"node": ">=18 || >=20.6.1"
},
Expand Down
Loading

0 comments on commit 569e401

Please sign in to comment.