I wondering what exactly every line mean? I had some problems with packages, because of dependencies in my project.
Firstly after updating nuxt from 1x to 2x all test began to fail. After hours of diging in web I noticed that I have 2 version of
chokidar dependencies
which has diffrent watchpack version, so I lock one package with
resolutions
in my package file.
It was watchpack ^2.0.0-beta.7
And all tests starts to work!
But unfortunately developer mode stopped to support hot reload... And starts to crashing.
So I tried to lock chokidar to version "^3.0.2"
and now everything is just fine!
But I start to wondering how everything works in this file Because after locking that chokidar all problems gone!
What exactly that line mean? Which chokidar being used? Both? First? Second?
Or even here
Some depen. of depenc, with 7 versions!