Skip to content

Commit eb26707

Browse files
authored
Feature/migrate seed.js to TypeScript (ghostfolio#4248)
* feat(db): migrate seed.js to typescript * feat(db): change seed command * Update changelog
1 parent 657cb51 commit eb26707

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- Migrated the database seeding to _TypeScript_
1213
- Upgraded `@trivago/prettier-plugin-sort-imports` from version `4.3.0` to `5.2.1`
1314
- Upgraded `ng-extract-i18n-merge` from version `2.13.1` to `2.14.1`
1415

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,6 @@
213213
"node": ">=20"
214214
},
215215
"prisma": {
216-
"seed": "node prisma/seed.js"
216+
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
217217
}
218218
}

prisma/seed.js prisma/seed.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
const { PrismaClient } = require('@prisma/client');
1+
import { PrismaClient } from '@prisma/client';
2+
23
const prisma = new PrismaClient();
34

45
async function main() {

0 commit comments

Comments
 (0)