neon-testing 2.0.1-beta.2 → 2.0.1-beta.4

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.
Files changed (2) hide show
  1. package/index.ts +0 -2
  2. package/package.json +5 -23
package/index.ts CHANGED
@@ -9,8 +9,6 @@ import {
9
9
  import { afterAll, beforeAll } from "vitest";
10
10
  import { neonConfig } from "@neondatabase/serverless";
11
11
 
12
- export * from "./utils";
13
-
14
12
  /**
15
13
  * Creates a PostgreSQL connection URI from connection parameters
16
14
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neon-testing",
3
- "version": "2.0.1-beta.2",
3
+ "version": "2.0.1-beta.4",
4
4
  "description": "A Vitest utility for seamless integration tests with Neon Postgres",
5
5
  "keywords": [
6
6
  "neon",
@@ -15,31 +15,13 @@
15
15
  "bugs": "https://github.com/starmode-base/neon-testing/issues",
16
16
  "type": "module",
17
17
  "exports": {
18
- ".": {
19
- "types": "./index.ts",
20
- "import": "./index.ts",
21
- "default": "./index.ts"
22
- },
23
- "./utils": {
24
- "types": "./utils.ts",
25
- "import": "./utils.ts",
26
- "default": "./utils.ts"
27
- },
28
- "./vite-plugin": {
29
- "types": "./vite-plugin.ts",
30
- "import": "./vite-plugin.ts",
31
- "default": "./vite-plugin.ts"
32
- },
33
- "./vitest-setup": {
34
- "types": "./vitest-setup.ts",
35
- "import": "./vitest-setup.ts",
36
- "default": "./vitest-setup.ts"
37
- }
18
+ ".": "./index.ts",
19
+ "./utils": "./utils.ts"
38
20
  },
39
21
  "files": [
40
22
  "index.ts",
41
- "utils.ts",
42
23
  "singleton.ts",
24
+ "utils.ts",
43
25
  "vite-plugin.ts",
44
26
  "vitest-setup.ts"
45
27
  ],
@@ -51,7 +33,7 @@
51
33
  "release:major": "bun pm version major && bun publish --tag latest",
52
34
  "release:beta": "bun pm version prerelease --preid=beta && bun publish --tag beta",
53
35
  "prepublishOnly": "tsc && vitest run && prettier --check .",
54
- "postpublish": "git push --tags"
36
+ "postpublish": "git push --follow-tags"
55
37
  },
56
38
  "dependencies": {
57
39
  "@neondatabase/api-client": "^2.2.0"