Is there a way to choose a specific Prisma version with this plugin?
There was a breaking bug in a recent version of Prisma and wanted to know if it was possible to tell the plugin which version to use?
For anyone trying to change the prisma dependencies in this plugin, here's a way of doing it with yarn:
add this to your package.json
"resolutions": {
"nexus-plugin-prisma/@prisma/ci-info": "2.1.2",
"nexus-plugin-prisma/@prisma/cli": "2.4.0",
"nexus-plugin-prisma/@prisma/client": "2.4.0",
"nexus-plugin-prisma/@prisma/debug": "2.4.0",
"nexus-plugin-prisma/@prisma/engine-core": "2.4.0",
"nexus-plugin-prisma/@prisma/fetch-engine": "2.4.0",
"nexus-plugin-prisma/@prisma/generator-helper": "2.4.0",
"nexus-plugin-prisma/@prisma/get-platform": "2.4.0",
"nexus-plugin-prisma/@prisma/sdk": "2.4.0"
}
change the versions to the ones that you want basically.
Most helpful comment
For anyone trying to change the prisma dependencies in this plugin, here's a way of doing it with yarn:
add this to your
package.jsonchange the versions to the ones that you want basically.