PrismaP
Prismaβ€’11mo agoβ€’
15 replies
feupeu

prisma generate hangs

Whenevery i run prisma generate, the process just hangs. I'm using the latest version (just installed it) in a deno monorepo.

This is my schema:
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["deno"]
  output          = "../node_modules/generated"
}

datasource db {
  provider = "postgresql"
  url      = env("PRISMA_DATABASE_URL")
}

model Dinosaur {
  id          Int    @id @default(autoincrement())
  name        String @unique
  description String
}


And attached is the output from DEBUG=* deno run -A npm:prisma generate.

Any prisma wizards able to help? 🀞
output.txt4.07KB
Was this page helpful?