Skip to content

Commit

Permalink
fix: update nuxt compatibility (#170)
Browse files Browse the repository at this point in the history
In nuxt/framework#7116 we made a breaking change allowing modules to use RC constraints. This PR fixes this.
  • Loading branch information
danielroe committed Sep 3, 2022
1 parent 264d8de commit b095831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default defineNuxtModule<GqlConfig>({
version,
configKey: 'graphql-client',
compatibility: {
nuxt: '^3.0.0'
nuxt: '^3.0.0-rc.7'
}
},
defaults: {
Expand Down

1 comment on commit b095831

@p3t3r67x0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would it be possible or useful to update the compatibility to latest Nuxt 3 release candidate version?

compatibility: {
  nuxt: '^3.0.0-rc.11'
}

Asking for a friend 😨

Please sign in to comment.