neon-testing 2.0.1-beta.3 → 2.0.1-beta.5

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/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.3",
3
+ "version": "2.0.1-beta.5",
4
4
  "description": "A Vitest utility for seamless integration tests with Neon Postgres",
5
5
  "keywords": [
6
6
  "neon",
package/vite-plugin.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import { fileURLToPath } from "node:url";
2
- import type { Plugin, UserConfig } from "vite";
2
+ import type { Plugin } from "vite";
3
3
 
4
- export function neonTesting() {
4
+ export function neonTesting(): Plugin {
5
5
  return {
6
6
  name: "neon-testing-plugin",
7
7
  enforce: "pre",
8
- config(user: any) {
8
+ config(user) {
9
9
  const setupPath = fileURLToPath(
10
10
  new URL("./vitest-setup.ts", import.meta.url),
11
11
  );
@@ -18,5 +18,5 @@ export function neonTesting() {
18
18
  },
19
19
  };
20
20
  },
21
- } satisfies Plugin;
21
+ };
22
22
  }