Skip to content

Commit

Permalink
refactor: rename npm-check-update config to .cjs
Browse files Browse the repository at this point in the history
`.mjs` files are not supported yet by `npm-check-updates@16`
  • Loading branch information
Robbert committed Dec 21, 2023
1 parent 4d9099b commit 6e5878b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"lint-fix:prettier": "prettier --write .",
"publish": "lerna publish from-package --yes",
"release": "lerna version prerelease --conventional-prerelease --no-changelog --no-private --yes",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js --deep --dep dev,prod --target patch --upgrade && npm install --legacy-peer-deps",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js --deep --dep dev,prod --target minor --upgrade && npm install --legacy-peer-deps",
"update-major": "npm-check-updates --configFileName .ncurc.major.js --deep --dep dev,prod --target latest --upgrade && npm install --legacy-peer-deps",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.cjs --deep --dep dev,prod --target patch --upgrade && npm install --legacy-peer-deps",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.cjs --deep --dep dev,prod --target minor --upgrade && npm install --legacy-peer-deps",
"update-major": "npm-check-updates --configFileName .ncurc.major.cjs --deep --dep dev,prod --target latest --upgrade && npm install --legacy-peer-deps",
"test-update": "npm-run-all --sequential clean lint build"
},
"dependencies": {
Expand Down

0 comments on commit 6e5878b

Please sign in to comment.