DEV Community

Discussion on: Are security fixes safe to automate?

Collapse
 
chrisdsaldivar profile image
Chris Saldivar

I'm not sure what your error with Vue is; but I used the following resolutions to fix the security issue.

  "resolutions": {
    "minimist": "^1.2.5",
    "acorn": ">=5.7.4",
    "with": "^6.0.0"
  }

I had to force with to upgrade too since I was getting the following error otherwise.

Error: Cannot find module 'acorn/dist/walk'

Turns out with was using acorn but they dropped that dependency back in 2016 but whatever was pulling in with was using an old version. So the newer version of with uses babel instead of acorn.