neon-testing 2.0.1-beta.13 → 2.0.1-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neon-testing",
|
|
3
|
-
"version": "2.0.1-beta.
|
|
3
|
+
"version": "2.0.1-beta.15",
|
|
4
4
|
"description": "A Vitest utility for seamless integration tests with Neon Postgres",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"neon",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
|
-
"test": "bun run build && vitest run",
|
|
37
|
-
"format": "prettier --write .",
|
|
38
36
|
"build": "rm -rf dist && tsc",
|
|
39
|
-
"
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"format": "prettier --write .",
|
|
39
|
+
"preversion": "bun run build && bun run test && bun run format",
|
|
40
40
|
"release:patch": "bun run preversion && bun pm version patch && bun publish --tag latest",
|
|
41
41
|
"release:minor": "bun run preversion && bun pm version minor && bun publish --tag latest",
|
|
42
42
|
"release:major": "bun run preversion && bun pm version major && bun publish --tag latest",
|