Open wxfred opened 7 months ago
Although not the exact same issue, I ran into something that may help. When using npm workspaces and running npm install video.js @videojs-player/vue --save --workspace=my-workspace
, it created an extra node_modules
directory in my workspace. This is usually a sign of mismatched dependencies, so I investigated. After scanning though the package-lock.json
file, it looks like @videojs-player/vue
depends on video.js
version ^6 || ^7
. When I rolled back video.js
to version ^7.0.0
, everything worked as expected. Perhaps if you remove the current version ^8.10.0
, and install "video.js": "^7.0.0"
instead, it may solve your issue as well.
Describe the bug
Run npm install video.js @videojs-player/vue --save Then run npm install, the error comes out
Reproduction
Run npm install video.js @videojs-player/vue --save Then run npm install, the error comes out
System Info
Used Package Manager
npm
Validations