You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
i18n for nuxt3 @nuxtjs/i18n@next requires vue-i18n-routing and this modules requires @intlify/vue-router-bridge from this repo
problem is vue-i18n-routing requires "vue-demi": "^0.14.5"
but @intlify/vue-router-bridge requires "vue-demi": "^0.13.5"
in npm ^ means: update until first non zero version number will change; so with package with zero major (first) version only patch (third) version can update
Clear and concise description of the problem
Hello,
i18n for nuxt3
@nuxtjs/i18n@next
requiresvue-i18n-routing
and this modules requires@intlify/vue-router-bridge
from this repoproblem is
vue-i18n-routing
requires"vue-demi": "^0.14.5"
but
@intlify/vue-router-bridge
requires"vue-demi": "^0.13.5"
in npm
^
means: update until first non zero version number will change; so with package with zero major (first) version only patch (third) version can updateand this incompatibility cause issues in installing nuxt project with i18n at all
see
nuxt-modules/i18n#1640
nuxt-modules/i18n#2556
and many more issues
Suggested solution
i found this commit 82ef441 already updated
vue-demi
to^0.14
which will fix issuescan you release new version of @intlify/vue-router-bridge with this change?
Alternative
maybe you can use
~0.13
instead of^0.13
~
means that only major (first) version can not change in update, and then ^0.14 and ~0.13 will be compatibleAdditional context
No response
Validations
The text was updated successfully, but these errors were encountered: