Currently, nuxt-prisma uses npx to run or install packages. It would be nice to enable us to specify a different package manager via an environment variable (or similar means).
This causes problems when having only bun or deno installed, making the usage of nuxt-prisma with bun impossible.
For now, I'd suggest adding support for npx, deno, and bun/bunx.
One of the cases where npx is harded:
|
const { stderr, exitCode } = await x("npx", commandArgs, { |
If you would like me to implement this, let me know.