vuetifyjs/vuetify-loader

what is happening with vite-plugin-vuetify and the latest version of vuetify?

fablexis opened this issue · 4 comments

Today, for the package vite-plugin-vuetify the docs say that its latest version is 2.0.3:

image
https://www.npmjs.com/package/vite-plugin-vuetify?activeTab=versions

even though when listing the versions of this package: npm view vite-plugin-vuetify it says that the latest version is 1.0.2

image

that's a problem for those who want to update vuetify to its latest version which is 3.5.11... if you try to make that update, it throws an error like this:

image

On the other hand, if I try to use that 2.0.3 version for vite-plugin-vuetify, I get this:
image

It makes sense since that version does not exist... but the docs say that it does

Also experiencing this.

I had the same issue, so I updated Vite and vite-plugin-vuetify and that resolved this for me:

"devDependencies": {
    "@vitejs/plugin-vue": "^4.0.0",
    "eslint": "^8.37.0",
    "eslint-plugin-vue": "^9.3.0",
    "sass": "^1.70.0",
    "sass-loader": "^14.0.0",
    "vite": "^5.2.3",
    "vite-plugin-vuetify": "^2.0.3"
}

This worked for me - thanks @coyotefather.

vuetifyjs/vuetify@110985e

I don't know why you get the "no matching version" error, that would be a npm problem.