File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Changed
11
11
12
+ - Migrated the database seeding to _ TypeScript_
12
13
- Upgraded ` @trivago/prettier-plugin-sort-imports ` from version ` 4.3.0 ` to ` 5.2.1 `
13
14
- Upgraded ` ng-extract-i18n-merge ` from version ` 2.13.1 ` to ` 2.14.1 `
14
15
Original file line number Diff line number Diff line change 213
213
"node" : " >=20"
214
214
},
215
215
"prisma" : {
216
- "seed" : " node prisma/seed.js "
216
+ "seed" : " ts- node --compiler-options { \" module \" : \" CommonJS \" } prisma/seed.ts "
217
217
}
218
218
}
Original file line number Diff line number Diff line change 1
- const { PrismaClient } = require ( '@prisma/client' ) ;
1
+ import { PrismaClient } from '@prisma/client' ;
2
+
2
3
const prisma = new PrismaClient ( ) ;
3
4
4
5
async function main ( ) {
You can’t perform that action at this time.
0 commit comments