Skip to content

Commit a5000d5

Browse files
committed
Release 1.0.0
1 parent 8ce36e8 commit a5000d5

File tree

4 files changed

+234
-127
lines changed

4 files changed

+234
-127
lines changed

.release-it.ts

Lines changed: 0 additions & 36 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## 1.0.0 (2025-11-29)
4+
5+
### ✨ New Features
6+
7+
* Vitest environment for Prisma and PostgreSQL ([d78e15b](https://github.com/codepunkt/vitest-environment-prisma-postgres/commit/d78e15b95fb824042951674c92566d4bf3520759))

package.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
{
22
"name": "vitest-environment-prisma-postgres",
3-
"version": "1.0.0-alpha.0",
4-
"description": "",
3+
"version": "1.0.0",
4+
"license": "MIT",
5+
"author": "Christoph Werner <christoph@codepunkt.de>",
6+
"description": "Vitest environment for Prisma & PostgreSQL designed for fast integration tests: seed your database once with production-like data, then run each test in a transaction that is rolled back after execution. Tests remain isolated without expensive reseeding.",
57
"type": "module",
8+
"packageManager": "pnpm@9.12.3",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/codepunkt/vitest-environment-prisma-postgres"
12+
},
13+
"engines": {
14+
"node": ">=24.0.0"
15+
},
616
"scripts": {
717
"build": "tsup",
818
"lint": "biome lint",
@@ -34,12 +44,10 @@
3444
"import": "./dist/setup.js"
3545
}
3646
},
37-
"author": "Christoph Werner <christoph@codepunkt.de>",
38-
"license": "MIT",
3947
"devDependencies": {
4048
"@biomejs/biome": "2.3.8",
4149
"@prisma/adapter-pg": "7.0.1",
42-
"@release-it/conventional-changelog": "10.0.2",
50+
"@release-it/conventional-changelog": "10.0.1",
4351
"@types/node": "24.10.1",
4452
"@vitest/coverage-v8": "4.0.14",
4553
"dotenv-cli": "11.0.0",
@@ -55,6 +63,7 @@
5563
"vitest": ">=4 <5"
5664
},
5765
"files": [
66+
"CHANGELOG.md",
5867
"dist"
5968
]
6069
}

0 commit comments

Comments
 (0)