pgsql-test 2.1.18 → 2.1.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.
package/esm/seed/index.js CHANGED
@@ -4,6 +4,7 @@ import { json } from './json';
4
4
  import { sqitch } from './sqitch';
5
5
  import { launchql } from './launchql';
6
6
  export * from './types';
7
+ export * from './csv';
7
8
  export const seed = {
8
9
  launchql,
9
10
  sqitch,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-test",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "pgsql-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests — giving developers realistic test coverage without external state pollution",
6
6
  "main": "index.js",
@@ -60,13 +60,13 @@
60
60
  "@types/pg-copy-streams": "^1.2.5"
61
61
  },
62
62
  "dependencies": {
63
- "@launchql/core": "^2.1.17",
64
- "@launchql/server-utils": "^2.1.11",
65
- "@launchql/types": "^2.1.9",
63
+ "@launchql/core": "^2.1.18",
64
+ "@launchql/server-utils": "^2.1.12",
65
+ "@launchql/types": "^2.1.10",
66
66
  "chalk": "^4.1.0",
67
67
  "deepmerge": "^4.3.1",
68
68
  "pg": "^8.16.0",
69
69
  "pg-copy-streams": "^6.0.6"
70
70
  },
71
- "gitHead": "88a3f792cb4a8dc8d7b0c0648ef5f9286ab72586"
71
+ "gitHead": "9080ca6a0fbb53ffec7744dfb8f9b9d94aaa9f00"
72
72
  }
package/seed/index.d.ts CHANGED
@@ -4,6 +4,7 @@ import { json } from './json';
4
4
  import { sqitch } from './sqitch';
5
5
  import { launchql } from './launchql';
6
6
  export * from './types';
7
+ export * from './csv';
7
8
  export declare const seed: {
8
9
  launchql: typeof launchql;
9
10
  sqitch: typeof sqitch;
package/seed/index.js CHANGED
@@ -21,6 +21,7 @@ const json_1 = require("./json");
21
21
  const sqitch_1 = require("./sqitch");
22
22
  const launchql_1 = require("./launchql");
23
23
  __exportStar(require("./types"), exports);
24
+ __exportStar(require("./csv"), exports);
24
25
  exports.seed = {
25
26
  launchql: launchql_1.launchql,
26
27
  sqitch: sqitch_1.sqitch,