neon-testing 2.1.3 → 2.2.0
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/README.md +4 -1
- package/dist/vite-plugin.d.ts +1 -1
- package/dist/vite-plugin.d.ts.map +1 -1
- package/package.json +12 -8
package/README.md
CHANGED
|
@@ -290,7 +290,10 @@ Create a free Neon project at [neon.com](https://neon.com/) to test with.
|
|
|
290
290
|
To make a new release, run:
|
|
291
291
|
|
|
292
292
|
```sh
|
|
293
|
-
bun run release
|
|
293
|
+
bun run release:patch
|
|
294
|
+
bun run release:minor
|
|
295
|
+
bun run release:major
|
|
296
|
+
bun run release:beta
|
|
294
297
|
```
|
|
295
298
|
|
|
296
299
|
The command will abort if there are uncommitted changes in the working tree, or if the `version` in [package.json](package.json) has not been incremented.
|
package/dist/vite-plugin.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vite-plugin.d.ts","sourceRoot":"","sources":["../vite-plugin.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"vite-plugin.d.ts","sourceRoot":"","sources":["../vite-plugin.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAE5C;;GAEG;AACH,wBAAgB,WAAW,CACzB,OAAO,GAAE;IACP;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;CACZ,GACL,MAAM,CAyBR"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neon-testing",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "A Vitest utility for seamless integration tests with Neon Postgres",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"neon",
|
|
@@ -34,8 +34,10 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"dev": "tsc --watch",
|
|
36
36
|
"build": "rm -rf dist && tsc",
|
|
37
|
-
"test": "vitest",
|
|
38
37
|
"format": "prettier --write .",
|
|
38
|
+
"test": "vitest",
|
|
39
|
+
"clean:soft": "rm -rf node_modules dist && bun install",
|
|
40
|
+
"clean:hard": "rm -rf node_modules dist bun.lock && bun install",
|
|
39
41
|
"check": "bun run build && bunx vitest run && bunx prettier --check .",
|
|
40
42
|
"release:patch": "bun run check && bun pm version patch && bun publish --tag latest",
|
|
41
43
|
"release:minor": "bun run check && bun pm version minor && bun publish --tag latest",
|
|
@@ -47,18 +49,20 @@
|
|
|
47
49
|
"@neondatabase/api-client": "^2.2.0"
|
|
48
50
|
},
|
|
49
51
|
"peerDependencies": {
|
|
50
|
-
"
|
|
52
|
+
"vite": "^7",
|
|
53
|
+
"vitest": "^3 || ^4"
|
|
51
54
|
},
|
|
52
55
|
"devDependencies": {
|
|
53
|
-
"@neondatabase/serverless": "^1.0.
|
|
54
|
-
"dotenv": "^17.2.
|
|
55
|
-
"drizzle-orm": "^0.44.
|
|
56
|
+
"@neondatabase/serverless": "^1.0.2",
|
|
57
|
+
"dotenv": "^17.2.3",
|
|
58
|
+
"drizzle-orm": "^0.44.6",
|
|
56
59
|
"pg": "^8.16.3",
|
|
57
60
|
"postgres": "^3.4.7",
|
|
58
61
|
"prettier": "^3.6.2",
|
|
59
|
-
"typescript": "^5.9.
|
|
62
|
+
"typescript": "^5.9.3",
|
|
63
|
+
"vite": "^7.1.12",
|
|
60
64
|
"vite-tsconfig-paths": "^5.1.4",
|
|
61
|
-
"vitest": "^
|
|
65
|
+
"vitest": "^4.0.1"
|
|
62
66
|
},
|
|
63
67
|
"browser": {
|
|
64
68
|
"./dist/vite-plugin.js": "./dist/browser-empty.js"
|