neon-testing 2.0.1-beta.18 → 2.0.1-beta.19

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 (1) hide show
  1. package/package.json +3 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neon-testing",
3
- "version": "2.0.1-beta.18",
3
+ "version": "2.0.1-beta.19",
4
4
  "description": "A Vitest utility for seamless integration tests with Neon Postgres",
5
5
  "keywords": [
6
6
  "neon",
@@ -22,21 +22,16 @@
22
22
  "./utils": {
23
23
  "types": "./dist/utils.d.ts",
24
24
  "import": "./dist/utils.js"
25
- },
26
- "./vite-plugin": {
27
- "types": "./dist/vite-plugin.d.ts",
28
- "import": "./dist/vite-plugin.js"
29
25
  }
30
26
  },
31
- "types": "./dist/index.d.ts",
32
27
  "files": [
33
28
  "dist"
34
29
  ],
35
30
  "scripts": {
36
31
  "build": "rm -rf dist && tsc",
37
- "test": "vitest run",
32
+ "test": "vitest",
38
33
  "format": "prettier --write .",
39
- "check": "bun run build && bun run test && bunx prettier --check .",
34
+ "check": "bun run build && bunx vitest run && bunx prettier --check .",
40
35
  "release:patch": "bun run check && bun pm version patch && bun publish --tag latest",
41
36
  "release:minor": "bun run check && bun pm version minor && bun publish --tag latest",
42
37
  "release:major": "bun run check && bun pm version major && bun publish --tag latest",