Prisma 7.10 is safe to commit the generated/prisma client? #30168
Replies: 2 comments
|
The recommendation still stands: you should NOT commit the Why you should keep it in
|
|
The Rust-free architecture changes what can be generated, but it does not by itself change the source-control recommendation. Prisma's current generator reference still explicitly says to exclude the generated directory from version control. The main reason is that the generated output may include a platform-specific query engine unless you use
For a normal application on Prisma 7.10, I would therefore keep this committed:
and keep If you explicitly use |
Uh oh!
There was an error while loading. Please reload this page.
In the last versions of Prisma it was recommended to not commit the generated code of Prisma Client, but in the new version of Prisma Next V8 and Prisma 7.10 it is safe?
I understand that there is a Discussions where it was recommended to not commit the generated/prisma.
But now in 2026 it is Rust free so why is it not recommended?
All reactions