ckeditor5
ckeditor5 copied to clipboard
Are dependencies correct?
Two-part question:
- Looking at this commit, deps such as
@ckeditor/ckeditor5-enginewhere moved fromdependenciestodevDependencies. It seems that these should be actual deps since they are not used as part of the build process. This is causing issues, because of ... ckeditor-reactis using>=for the semver versioning ofckeditor-react. So when I install our custom CKE inline build into our consuming app, NPM tries to install@ckeditor/[email protected]even though we are not yet on v40. What seems to be happening isckeditor-reactessentially is asking for any version>=37, so NPM selects v40, not knowning that our custom build requires^38.0.1-- since it's in there as adevDependency(as it is in all of the CKE packages I checked).
Here's what the failed install looks like:
npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: undefined@undefined npm ERR! Found: @ckeditor/[email protected] npm ERR! node_modules/@ckeditor/ckeditor5-engine npm ERR! peer @ckeditor/ckeditor5-engine@">=37.0.0" from @ckeditor/[email protected] npm ERR! node_modules/@ckeditor/ckeditor5-react npm ERR! @ckeditor/ckeditor5-react@"^6.1.0" from the root project npm ERR! peer @ckeditor/ckeditor5-react@"^6.1.0" from @my-org/[email protected] npm ERR! node_modules/@my-org/example-app-react npm ERR! @my-org/example-app-react@"1.0.5" from the root project npm ERR! @ckeditor/ckeditor5-engine@"40.0.0" from @ckeditor/[email protected] npm ERR! node_modules/@ckeditor/ckeditor5-core npm ERR! peer @ckeditor/ckeditor5-core@">=37.0.0" from @ckeditor/[email protected] npm ERR! node_modules/@ckeditor/ckeditor5-react npm ERR! @ckeditor/ckeditor5-react@"^6.1.0" from the root project npm ERR! 1 more (@my-org/example-app-react) npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer @ckeditor/ckeditor5-engine@"^38.0.1" from @my-org/[email protected] npm ERR! node_modules/@my-org/example-ckeditor-my-plugin npm ERR! peer @my-org/example-ckeditor-reference@"^1.0.0" from @my-org/[email protected] npm ERR! node_modules/@my-org/example-app-react npm ERR! @my-org/example-app-react@"1.0.5" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
Note that we cannot agree on which version of @ckeditor/ckeditor5-engine to install.
📃 Other details
- Browser: N/A
- OS: Manjaro Linux / N/A
- CKEditor version: 38.0.1
- Installed CKEditor plugins: N/A
If you'd like to see this improvement implemented, add a 👍 reaction to this post.