pg-cache 1.4.5 → 1.4.7
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 +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -139,6 +139,7 @@ Gracefully close all cached pools and wait for disposal.
|
|
|
139
139
|
|
|
140
140
|
This package is designed to be extended. For example, `@launchql/graphile-cache` uses the cleanup callback system to automatically clean up PostGraphile instances when their associated pools are disposed.
|
|
141
141
|
|
|
142
|
+
---
|
|
142
143
|
|
|
143
144
|
## Education and Tutorials
|
|
144
145
|
|
|
@@ -214,4 +215,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
214
215
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
215
216
|
|
|
216
217
|
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.
|
|
217
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-cache",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL connection pool LRU cache manager",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,24 +20,24 @@
|
|
|
20
20
|
"url": "https://github.com/launchql/launchql/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
24
|
-
"clean": "rimraf dist/**",
|
|
23
|
+
"clean": "makage clean",
|
|
25
24
|
"prepack": "npm run build",
|
|
26
|
-
"build": "
|
|
27
|
-
"build:dev": "
|
|
25
|
+
"build": "makage build",
|
|
26
|
+
"build:dev": "makage build --dev",
|
|
28
27
|
"lint": "eslint . --fix",
|
|
29
28
|
"test": "jest",
|
|
30
29
|
"test:watch": "jest --watch"
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
|
33
|
-
"@launchql/logger": "^1.1.
|
|
34
|
-
"@launchql/types": "^2.8.
|
|
32
|
+
"@launchql/logger": "^1.1.11",
|
|
33
|
+
"@launchql/types": "^2.8.5",
|
|
35
34
|
"lru-cache": "^11.1.0",
|
|
36
35
|
"pg": "^8.16.0",
|
|
37
|
-
"pg-env": "^1.1.
|
|
36
|
+
"pg-env": "^1.1.6"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
|
-
"@types/pg": "^8.15.2"
|
|
39
|
+
"@types/pg": "^8.15.2",
|
|
40
|
+
"makage": "^0.1.6"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
43
43
|
"postgresql",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"connection",
|
|
49
49
|
"launchql"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e85e82c301d859ff7e2317bf07345156af9ff8d1"
|
|
52
52
|
}
|