neon-testing 2.0.1-beta.1 → 2.0.1-beta.3
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 +5 -13
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.3",
|
|
4
4
|
"description": "A Vitest utility for seamless integration tests with Neon Postgres",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"neon",
|
|
@@ -15,21 +15,13 @@
|
|
|
15
15
|
"bugs": "https://github.com/starmode-base/neon-testing/issues",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"exports": {
|
|
18
|
-
".":
|
|
19
|
-
|
|
20
|
-
"import": "./index.ts",
|
|
21
|
-
"default": "./index.ts"
|
|
22
|
-
},
|
|
23
|
-
"./utils": {
|
|
24
|
-
"types": "./utils.ts",
|
|
25
|
-
"import": "./utils.ts",
|
|
26
|
-
"default": "./utils.ts"
|
|
27
|
-
}
|
|
18
|
+
".": "./index.ts",
|
|
19
|
+
"./utils": "./utils.ts"
|
|
28
20
|
},
|
|
29
21
|
"files": [
|
|
30
22
|
"index.ts",
|
|
31
|
-
"utils.ts",
|
|
32
23
|
"singleton.ts",
|
|
24
|
+
"utils.ts",
|
|
33
25
|
"vite-plugin.ts",
|
|
34
26
|
"vitest-setup.ts"
|
|
35
27
|
],
|
|
@@ -41,7 +33,7 @@
|
|
|
41
33
|
"release:major": "bun pm version major && bun publish --tag latest",
|
|
42
34
|
"release:beta": "bun pm version prerelease --preid=beta && bun publish --tag beta",
|
|
43
35
|
"prepublishOnly": "tsc && vitest run && prettier --check .",
|
|
44
|
-
"postpublish": "git push --tags"
|
|
36
|
+
"postpublish": "git push --follow-tags"
|
|
45
37
|
},
|
|
46
38
|
"dependencies": {
|
|
47
39
|
"@neondatabase/api-client": "^2.2.0"
|