Currently, when executing the prisma-generate nx command - it shows hints from prisma (hints are instructional and promotional messages from the prisma library/creators - source code)
While it may help users while in development environment, having this promotional messages appear in CI/CD logs while building for production is super annoying.
This messages can be turned off by passing the flag --no-hints to the prisma generate command
Currently the nx-prisma plugin supports only --watch and --data-proxy flags, instead of supporting all the available flags/options that prisma provides
Currently, when executing the
prisma-generate
nx command - it shows hints fromprisma
(hints are instructional and promotional messages from the prisma library/creators - source code) While it may help users while in development environment, having this promotional messages appear in CI/CD logs while building for production is super annoying.This messages can be turned off by passing the flag
--no-hints
to theprisma generate
commandCurrently the
nx-prisma
plugin supports only--watch
and--data-proxy
flags, instead of supporting all the available flags/options that prisma providesI've also posted a PR (#1125) to fix that