fix: add missing i18next dependency to package.json (#1006)
* fix: add missing i18next dependency to package.json The i18next package was being imported throughout the frontend code but was not explicitly declared in devDependencies. It was only installed indirectly as a peer dependency of react-i18next, which can cause issues with strict package managers like pnpm. This fix explicitly adds i18next ^24.2.3 to devDependencies to ensure it's always installed. Fixes #987 * chore: update package-lock.json after adding i18next dependency
This commit is contained in:
parent
01a84c3598
commit
50eb12d7ec
2 changed files with 2 additions and 1 deletions
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -76,6 +76,7 @@
|
|||
"globals": "^15.11.0",
|
||||
"highlight.js": "^11.11.1",
|
||||
"html-webpack-plugin": "^5.6.3",
|
||||
"i18next": "^24.2.3",
|
||||
"i18next-browser-languagedetector": "^8.0.4",
|
||||
"i18next-http-backend": "^3.0.2",
|
||||
"identity-obj-proxy": "^3.0.0",
|
||||
|
|
@ -10886,7 +10887,6 @@
|
|||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.26.10"
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue