Skip to content

Commit b3ac7e0

Browse files
chore: update pnpm to the latest version (#5099)
## 📄 Description This PR updates the project’s package manager from [email protected] to [email protected]. To address issues caused by the upgrade: ✅ Added eslint-plugin-react to fix ESLint config resolution in documentation ✅ Added cypress as a dev dependency to ensure the binary installs correctly. The problem was introduced after upgrading to pnpm@10, which no longer runs dependency lifecycle scripts (like cypress install) by default. cypress-io/cypress#31111 --- ## 📝 Checklist - ✅ My code follows the style guidelines of this project - 🛠️ I have performed a self-review of my own code - ⚠️ My changes generate no new warnings or errors - ✔️ New and existing unit tests pass locally with my changes
1 parent a44f298 commit b3ac7e0

File tree

3 files changed

+51
-75
lines changed

3 files changed

+51
-75
lines changed

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"engines": {
116116
"node": "22"
117117
},
118-
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
118+
"packageManager": "pnpm@10.6.5+sha512.cdf928fca20832cd59ec53826492b7dc25dc524d4370b6b4adbf65803d32efaa6c1c88147c0ae4e8d579a6c9eec715757b50d4fa35eea179d868eada4ed043af",
119119
"pnpm": {
120120
"peerDependencyRules": {
121121
"ignoreMissing": {},
@@ -125,6 +125,9 @@
125125
"zone.js": ">=0.14"
126126
}
127127
},
128-
"overrides": {}
128+
"overrides": {},
129+
"onlyBuiltDependencies": [
130+
"cypress"
131+
]
129132
}
130133
}

packages/documentation/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"eslint": "9.18.0",
6969
"eslint-plugin-markdown": "5.1.0",
7070
"eslint-plugin-mdx": "3.1.5",
71+
"eslint-plugin-react": "7.37.4",
7172
"eslint-plugin-storybook": "0.11.2",
7273
"globals": "15.14.0",
7374
"lit": "3.2.1",

0 commit comments

Comments
 (0)