@crvouga/postgres-mem 1.1.1 → 1.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crvouga/postgres-mem",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Pure TypeScript in-memory PostgreSQL implementation with zero WASM/native dependencies",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -51,6 +51,8 @@
51
51
  "test": "bun test tests/contract tests/fuzz tests/harness",
52
52
  "test:contract": "bun test tests/contract",
53
53
  "test:fuzz": "bun test tests/fuzz",
54
+ "test:pbt": "bun test tests/fuzz",
55
+ "test:pbt:random": "bun run scripts/pbt-random.ts",
54
56
  "test:fuzz:soak": "POSTGRES_MEM_STATEFUL_STEPS=${POSTGRES_MEM_STATEFUL_STEPS:-48} POSTGRES_MEM_FUZZ_RUNS=${POSTGRES_MEM_FUZZ_RUNS:-40} bun test tests/fuzz/stateful.test.ts tests/fuzz/metamorphic tests/fuzz/robustness.test.ts tests/fuzz/corpus.test.ts",
55
57
  "test:metamorphic": "bun test tests/fuzz/metamorphic",
56
58
  "test:dst": "bun test tests/fuzz/stateful.test.ts tests/fuzz/corpus.test.ts",
@@ -76,7 +78,7 @@
76
78
  "lint:fix": "biome lint --write --error-on-warnings .",
77
79
  "clean": "rm -rf dist",
78
80
  "check": "bun run format:check && bun run lint && bun run typecheck && bun run test:postgres-compat",
79
- "ci:local": "bun run scripts/ci-local.ts",
81
+ "check:full": "bun run scripts/ci-local.ts",
80
82
  "commitlint": "commitlint --edit",
81
83
  "verify-package": "bun run scripts/verify-package.ts",
82
84
  "release:preflight": "bun run scripts/release-preflight.ts",
@@ -88,7 +90,7 @@
88
90
  "npm:seed": "bun run scripts/seed-npm.ts",
89
91
  "gh": "open https://github.com/crvouga/postgres-mem/actions",
90
92
  "example:react-vite": "cd examples/react-vite && bun install && bun run dev",
91
- "fc": "clear && bun format && bun ci:local",
93
+ "fc": "clear && bun format && bun check:full",
92
94
  "test:postgres-native": "bun run scripts/run-postgres-native-tests.ts"
93
95
  },
94
96
  "devDependencies": {