neon-testing 2.0.1-beta.8 → 2.0.1-beta.9

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/dist/utils.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { lazySingleton } from "./singleton";
2
- export { neonTesting } from "./vite-plugin";
1
+ export { lazySingleton } from "./singleton.js";
2
+ export { neonTesting } from "./vite-plugin.js";
package/dist/utils.js CHANGED
@@ -1,3 +1,3 @@
1
- export { lazySingleton } from "./singleton";
2
- export { neonTesting } from "./vite-plugin";
1
+ export { lazySingleton } from "./singleton.js";
2
+ export { neonTesting } from "./vite-plugin.js";
3
3
  //# sourceMappingURL=utils.js.map
package/dist/utils.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"utils.js","sourceRoot":"","sources":["../utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neon-testing",
3
- "version": "2.0.1-beta.8",
3
+ "version": "2.0.1-beta.9",
4
4
  "description": "A Vitest utility for seamless integration tests with Neon Postgres",
5
5
  "keywords": [
6
6
  "neon",
@@ -37,10 +37,10 @@
37
37
  "test": "vitest",
38
38
  "format": "prettier --write .",
39
39
  "build": "rm -rf dist && tsc -p tsconfig.build.json && cp vitest-setup.js dist/",
40
- "release:patch": "bun pm version patch && bun run build && bun publish --tag latest",
41
- "release:minor": "bun pm version minor && bun run build && bun publish --tag latest",
42
- "release:major": "bun pm version major && bun run build && bun publish --tag latest",
43
- "release:beta": "bun pm version prerelease --preid=beta && bun run build && bun publish --tag beta",
40
+ "release:patch": "bun pm version patch && bun publish --tag latest",
41
+ "release:minor": "bun pm version minor && bun publish --tag latest",
42
+ "release:major": "bun pm version major && bun publish --tag latest",
43
+ "release:beta": "bun pm version prerelease --preid=beta && bun publish --tag beta",
44
44
  "prepublishOnly": "bun run build && vitest run && prettier --check .",
45
45
  "postpublish": "git push --follow-tags"
46
46
  },