Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions __fixtures__/test-project-esm/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions __fixtures__/test-project-live/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "postgresql"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions __fixtures__/test-project/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions local-testing-project-live/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "postgresql"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions local-testing-project/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions packages/create-cedar-app/templates/js/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
3 changes: 3 additions & 0 deletions packages/create-cedar-app/templates/ts/api/db/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ datasource db {
provider = "sqlite"
}

// This specific combination of settings is the only way to make Prisma 7 work
// in both CJS and ESM Cedar apps.
// See https://github.com/cedarjs/cedar/pull/1761 for more info
generator client {
provider = "prisma-client"
output = "./generated/prisma"
Expand Down
Loading