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
parent
commit
dbc9b9ae0b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 2
      DEVELOPMENT.md
  3. 2
      package-lock.json
  4. 4
      package.json

2
CHANGELOG.md

@ -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

2
DEVELOPMENT.md

@ -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`)

2
package-lock.json

@ -163,7 +163,7 @@
"webpack-bundle-analyzer": "4.10.2"
},
"engines": {
"node": ">=22"
"node": ">=22.18.0"
}
},
"node_modules/@adobe/css-tools": {

4
package.json

@ -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"
}
}

Loading…
Cancel
Save