pgsql-test 2.14.7 → 2.14.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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -631,6 +631,8 @@ const { conn, db, teardown } = await getConnections({
631
631
  });
632
632
  ```
633
633
 
634
+ ---
635
+
634
636
  ## Education and Tutorials
635
637
 
636
638
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
@@ -705,4 +707,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
705
707
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
706
708
 
707
709
  No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
708
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-test",
3
- "version": "2.14.7",
3
+ "version": "2.14.9",
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",
@@ -46,30 +46,30 @@
46
46
  "pg-client"
47
47
  ],
48
48
  "scripts": {
49
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
50
- "clean": "rimraf dist/**",
49
+ "clean": "makage clean",
51
50
  "prepack": "npm run build",
52
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
53
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
51
+ "build": "makage build",
52
+ "build:dev": "makage build --dev",
54
53
  "lint": "eslint . --fix",
55
54
  "test": "jest",
56
55
  "test:watch": "jest --watch"
57
56
  },
58
57
  "devDependencies": {
59
58
  "@types/pg": "^8.15.2",
60
- "@types/pg-copy-streams": "^1.2.5"
59
+ "@types/pg-copy-streams": "^1.2.5",
60
+ "makage": "^0.1.6"
61
61
  },
62
62
  "dependencies": {
63
- "@launchql/core": "^2.17.1",
64
- "@launchql/env": "^2.5.4",
65
- "@launchql/logger": "^1.1.9",
66
- "@launchql/server-utils": "^2.6.5",
67
- "@launchql/types": "^2.8.4",
63
+ "@launchql/core": "^2.17.3",
64
+ "@launchql/env": "^2.5.5",
65
+ "@launchql/logger": "^1.1.10",
66
+ "@launchql/server-utils": "^2.6.6",
67
+ "@launchql/types": "^2.8.5",
68
68
  "csv-parse": "^6.1.0",
69
69
  "pg": "^8.16.0",
70
- "pg-cache": "^1.4.5",
70
+ "pg-cache": "^1.4.6",
71
71
  "pg-copy-streams": "^7.0.0",
72
- "pg-env": "^1.1.5"
72
+ "pg-env": "^1.1.6"
73
73
  },
74
- "gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
74
+ "gitHead": "1da5f98bd18b47382b652e104cdc4db1b9ee79db"
75
75
  }