Closed c-ranger closed 12 months ago
I found a workaround:
Add this to package.json (without the caret '^' before the version number):
"sortablejs-vue3": "1.2.9",
some ai help....
This warning message is related to peer dependencies in npm. Peer dependencies are a specific kind of dependency that's expected to be installed into the parent project by the user, not as a child of the package that defines the peer dependency.
In your case, the sortablejs-vue3 package has a peer dependency on sortablejs at a specific commit (github:roy-mdr/Sortable#cee2ee7bccf83a7776c85588759aa0b8), but the installed version of sortablejs in your project is 1.15.0, which doesn't satisfy the peer dependency requirement.
Same
I found a workaround:
Add this to package.json (without the caret '^' before the version number):
"sortablejs-vue3": "1.2.9",
I use yarn add sortablejs-vue3@1.2.9
and it works too.
This should be resolved in v1.2.11.
Please help!
I can no longer install sortablejs-vue3