Browse Source
Task/migrate execution of seed.ts without additional configuration (#5302)
* Migrate execution of seed.ts without additional configuration
* Update changelog
pull/5318/head^2
Kenrick Tandrian
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
6 additions and
4 deletions
-
CHANGELOG.md
-
DEVELOPMENT.md
-
package-lock.json
-
package.json
|
|
@ -9,8 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Removed `ts-node` from the database seeding process |
|
|
|
- Improved the language localization for Catalan (`ca`) |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
- Upgraded the `Node.js` engine from version `>=22` to `>=22.18.0` (`package.json`) |
|
|
|
|
|
|
|
## 2.188.0 - 2025-08-02 |
|
|
|
|
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
### Prerequisites |
|
|
|
|
|
|
|
- [Docker](https://www.docker.com/products/docker-desktop) |
|
|
|
- [Node.js](https://nodejs.org/en/download) (version 22+) |
|
|
|
- [Node.js](https://nodejs.org/en/download) (version `>=22.18.0`) |
|
|
|
- Create a local copy of this Git repository (clone) |
|
|
|
- Copy the file `.env.dev` to `.env` and populate it with your data (`cp .env.dev .env`) |
|
|
|
|
|
|
|
|
|
@ -163,7 +163,7 @@ |
|
|
|
"webpack-bundle-analyzer": "4.10.2" |
|
|
|
}, |
|
|
|
"engines": { |
|
|
|
"node": ">=22" |
|
|
|
"node": ">=22.18.0" |
|
|
|
} |
|
|
|
}, |
|
|
|
"node_modules/@adobe/css-tools": { |
|
|
|
|
|
@ -209,9 +209,9 @@ |
|
|
|
"webpack-bundle-analyzer": "4.10.2" |
|
|
|
}, |
|
|
|
"engines": { |
|
|
|
"node": ">=22" |
|
|
|
"node": ">=22.18.0" |
|
|
|
}, |
|
|
|
"prisma": { |
|
|
|
"seed": "npx ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts" |
|
|
|
"seed": "node prisma/seed.ts" |
|
|
|
} |
|
|
|
} |
|
|
|