chore(deps): update dependency eslint-config-prettier to v10#485
chore(deps): update dependency eslint-config-prettier to v10#485
Conversation
|
|
View your CI Pipeline Execution ↗ for commit e1c5442 ☁️ Nx Cloud last updated this comment at |
|
View your CI Pipeline Execution ↗ for commit 284e742. ☁️ Nx Cloud last updated this comment at |
68ff75d to
d59e92f
Compare
2126efb to
fbb4ab8
Compare
ee83df2 to
809a65a
Compare
f424647 to
49e97e6
Compare
affdf35 to
cf5c268
Compare
98a1765 to
5c741c7
Compare
584cf00 to
4449418
Compare
0208db0 to
b79d266
Compare
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughDie devDependency Changes
Geschätzter Code-Review-Aufwand🎯 1 (Trivial) | ⏱️ ~2 Minuten Gedicht
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@package.json`:
- Line 52: Die Änderung in package.json setzt "eslint-config-prettier" auf
10.1.8, was mit der vorhandenen `@nx/eslint-plugin`@17.1.3 (die ^9.0.0 verlangt)
konfligiert und außerdem nicht mit package-lock.json (zeigt v9.1.2)
übereinstimmt; behebe das entweder by (a) downgraden von eslint-config-prettier
in package.json auf 9.1.2 und dann package-lock.json neu erzeugen (npm install)
oder by (b) upgraden von `@nx/eslint-plugin` auf eine Version, die
eslint-config-prettier@^10.x unterstützt, und anschließend package-lock.json neu
erzeugen; stelle sicher, dass die finalen Versionen in package.json und
package-lock.json übereinstimmen und alle Peer-Dependency-Constraints erfüllt
sind.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| "cypress": "^13.5.1", | ||
| "eslint": "8.57.1", | ||
| "eslint-config-prettier": "9.1.2", | ||
| "eslint-config-prettier": "10.1.8", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== package.json: relevante Versionen =="
jq -r '.devDependencies | {
"eslint-config-prettier": ."eslint-config-prettier",
"@nx/eslint-plugin": ."@nx/eslint-plugin",
"eslint-plugin-prettier": ."eslint-plugin-prettier"
}' package.json
echo
echo "== package-lock.json: installierte Versionen (falls vorhanden) =="
if [ -f package-lock.json ]; then
jq -r '
[
.packages["node_modules/eslint-config-prettier"].version // "N/A",
.packages["node_modules/jsonc-eslint-parser"].version // "N/A"
] | `@tsv`
' package-lock.json | awk -F'\t' '{print "eslint-config-prettier(lock): "$1"\njsonc-eslint-parser(lock): "$2}'
else
echo "package-lock.json fehlt"
fi
echo
echo "== npm registry: Peer-Dependencies prüfen =="
curl -s https://registry.npmjs.org/%40nx%2Feslint-plugin/17.1.3 | \
jq -r '.peerDependencies // {}, .peerDependenciesMeta // {}'
echo
echo "== npm registry: Peer-Dependencies von eslint-plugin-prettier prüfen =="
curl -s https://registry.npmjs.org/eslint-plugin-prettier/5.5.5 | \
jq -r '.peerDependencies // {}'Repository: WolfSoko/nx-clean
Length of output: 748
Stoppen: eslint-config-prettier@10.1.8 bricht Peer-Dependency mit @nx/eslint-plugin@17.1.3.
Die Änderung in Zeile 52 erzeugt einen unauflösbaren Konflikt: @nx/eslint-plugin@17.1.3 erfordert eslint-config-prettier@^9.0.0 (also <10.0.0), die neue Version 10.1.8 erfüllt das nicht. Zusätzlich ist package-lock.json desynchron (zeigt v9.1.2 statt 10.1.8).
Entweder (a) auf eslint-config-prettier@9.1.2 zurückgehen oder (b) @nx/eslint-plugin auf eine Version upgraden, die eslint-config-prettier@10.x unterstützt, und dann Lockfile neu erzeugen.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@package.json` at line 52, Die Änderung in package.json setzt
"eslint-config-prettier" auf 10.1.8, was mit der vorhandenen
`@nx/eslint-plugin`@17.1.3 (die ^9.0.0 verlangt) konfligiert und außerdem nicht
mit package-lock.json (zeigt v9.1.2) übereinstimmt; behebe das entweder by (a)
downgraden von eslint-config-prettier in package.json auf 9.1.2 und dann
package-lock.json neu erzeugen (npm install) oder by (b) upgraden von
`@nx/eslint-plugin` auf eine Version, die eslint-config-prettier@^10.x
unterstützt, und anschließend package-lock.json neu erzeugen; stelle sicher,
dass die finalen Versionen in package.json und package-lock.json übereinstimmen
und alle Peer-Dependency-Constraints erfüllt sind.
This PR contains the following updates:
9.1.2→10.1.8Release Notes
prettier/eslint-config-prettier (eslint-config-prettier)
v10.1.8Compare Source
republish latest version
Full Changelog: prettier/eslint-config-prettier@v10.1.5...v10.1.8
v10.1.5Compare Source
Patch Changes
60fef02Thanks @JounQin! - chore: addfundingfield intopackage.jsonv10.1.4Compare Source
Patch Changes
94b4799Thanks @silvenon! - fix(cli): do not crash on no rules configuredv10.1.3Compare Source
Patch Changes
4e95a1dThanks @pilikan! - fix: this package iscommonjs, align its types correctlyv10.1.2Compare Source
Patch Changes
a8768bfThanks @Fdawgs! - chore(package): add homepage for some 3rd-party registry - see #321 for more detailsv10.1.1Compare Source
Patch Changes
#309
eb56a5eThanks @JounQin! - fix: separate the/flatentry for compatibilityFor flat config users, the previous
"eslint-config-prettier"entry still works, but"eslint-config-prettier/flat"adds a newnameproperty for config-inspector, we just can't add it for the default entry for compatibility.See also #308
v10.1.0Compare Source
Minor Changes
56e2e34Thanks @JounQin! - feat: migrate to exports fieldv10.0.3Compare Source
Patch Changes
#294
8dbbd6dThanks @FloEdelmann! - feat: add name to config#280
cba5737Thanks @zanminkian! - feat: add declaration filev10.0.2Compare Source
Patch Changes
e750edcThanks @Fdawgs! - chore(package): explicitly declare js module typev10.0.1Compare Source
eslint-config-prettier
10.0.1
What's Changed
@stylistic/eslint-pluginby @abrahamguo in #272New Contributors
Full Changelog: prettier/eslint-config-prettier@v9.1.0...v10.0.1
v10.0.0Compare Source
Major Changes
5be64beThanks @abrahamguo! - add support for @stylistic formatting rulesConfiguration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate.