What are the latest safe versions of all packages? #6991
Unanswered
vincerubinetti
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have the command
vue upgrade
to get the latest version of the first-party vue-cli plugins, e.g.@vue/cli-plugin-babel
. But, there are many other necessary dependencies in a typical vue-cli project, such aseslint
,sass
,sass-loader
,typescript
,vue-jest
, etc. I can simply usenpm-check-updates
to upgrade all packages to their most recent version, but that causes tons of compatibility errors when building.I'd love to be able to call
vue upgrade
with a special flag to upgrade all related packages to their most recent versions that are compatible with the vue-cli packages. Though, I'm guessing that would be difficult to implement. Instead I'll ask, is there just a simple list I can consult to get the latest safe versions? Something I can mindlessly look at to upgrade, without having to troubleshoot (as I plan to be doing this multiple times over the years to keep my project up to date).Perhaps that list already exists in the form of vue-cli's package.json? Can I always assume that these are the latest packages I can safely install? But then again, that file is missing some potential dependencies like
sass
...Related: #6923
Beta Was this translation helpful? Give feedback.
All reactions