pgsql-test 2.14.6 → 2.14.8
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/README.md +2 -1
- package/package.json +16 -17
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.
|
|
3
|
+
"version": "2.14.8",
|
|
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,31 +46,30 @@
|
|
|
46
46
|
"pg-client"
|
|
47
47
|
],
|
|
48
48
|
"scripts": {
|
|
49
|
-
"
|
|
50
|
-
"clean": "rimraf dist/**",
|
|
49
|
+
"clean": "makage clean",
|
|
51
50
|
"prepack": "npm run build",
|
|
52
|
-
"build": "
|
|
53
|
-
"build:dev": "
|
|
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
|
-
"@types/csv-parse": "^1.2.4",
|
|
60
58
|
"@types/pg": "^8.15.2",
|
|
61
|
-
"@types/pg-copy-streams": "^1.2.5"
|
|
59
|
+
"@types/pg-copy-streams": "^1.2.5",
|
|
60
|
+
"makage": "^0.1.6"
|
|
62
61
|
},
|
|
63
62
|
"dependencies": {
|
|
64
|
-
"@launchql/core": "^2.17.
|
|
65
|
-
"@launchql/env": "^2.5.
|
|
66
|
-
"@launchql/logger": "^1.1.
|
|
67
|
-
"@launchql/server-utils": "^2.6.
|
|
68
|
-
"@launchql/types": "^2.8.
|
|
69
|
-
"csv-parse": "^
|
|
63
|
+
"@launchql/core": "^2.17.2",
|
|
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
|
+
"csv-parse": "^6.1.0",
|
|
70
69
|
"pg": "^8.16.0",
|
|
71
|
-
"pg-cache": "^1.4.
|
|
72
|
-
"pg-copy-streams": "^
|
|
73
|
-
"pg-env": "^1.1.
|
|
70
|
+
"pg-cache": "^1.4.6",
|
|
71
|
+
"pg-copy-streams": "^7.0.0",
|
|
72
|
+
"pg-env": "^1.1.6"
|
|
74
73
|
},
|
|
75
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
76
75
|
}
|