Is there any command like `prisma generate --watch...
# orm-help
d
Is there any command like
prisma generate --watch
? I find a bit cumbersome to execute
prisma generate
each time I change
schema.prisma
file. Or what is the best practise?
n
Maybe pair this with nodemon if it doesn't exist 🤔
n
Hey Dominik 👋 Yes, Indeed we support
prisma generate --watch
Here’s the CLI Reference: prisma generate watch. By using --watch flag, prisma client will automatically be generated when you change your schema file.