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
Currently the package generated by this tool is built against Prisma 3.
Prisma 4 is now mature and so this package should either be deprecated or updated to support Prisma 4. This will mostly likely require ditching the exported logger object from @prisma/sdk in favor of using console.log directly. (Logger is only a chalk-colored wrapper around a vanilla log function)
The text was updated successfully, but these errors were encountered:
yes, this indeed is still using Prisma 3 which is inconvenient. updating the generated boilerplate dependencies for Prisma wouldn't be hard though. I'll see when I have time to update it but surely it's not and won't be considered deprecated because of old prisma dependencies. in fact you can just use it and migrate to prisma v4 yourself after generating the project boilerplate which shouldn't take a few minutes.
Currently the package generated by this tool is built against Prisma 3.
Prisma 4 is now mature and so this package should either be deprecated or updated to support Prisma 4. This will mostly likely require ditching the exported
logger
object from@prisma/sdk
in favor of usingconsole.log
directly. (Logger is only a chalk-colored wrapper around a vanilla log function)The text was updated successfully, but these errors were encountered: