2

I have a node.js project (Nest JS to be more specific), where i am trying to reinstall my depdency after getting the same error as described below.

I have not seen something like this before. I checked the yarn.lock and pacakge.json files nd the anymatch dependency is only listed as dependencies to other dependencies (as shown in image 2)

Has anybody experienced something like this before? enter image description here

enter image description here

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
Kristoffer Tølbøll
  • 3,157
  • 5
  • 34
  • 69

1 Answers1

5

I came across the same problem but with other package. Try this:

yarn cache clean
yarn --update-checksums
yarn install
rwats
  • 68
  • 1
  • 4