graphile-cache 1.4.5 → 1.4.6
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 +8 -8
package/README.md
CHANGED
|
@@ -179,6 +179,8 @@ This design ensures:
|
|
|
179
179
|
- Automatic cleanup without manual intervention
|
|
180
180
|
- Loose coupling between packages
|
|
181
181
|
|
|
182
|
+
---
|
|
183
|
+
|
|
182
184
|
## Education and Tutorials
|
|
183
185
|
|
|
184
186
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -253,4 +255,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
253
255
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
254
256
|
|
|
255
257
|
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.
|
|
256
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-cache",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile LRU cache with automatic pool cleanup integration",
|
|
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.
|
|
32
|
+
"@launchql/logger": "^1.1.10",
|
|
34
33
|
"lru-cache": "^11.1.0",
|
|
35
34
|
"pg": "^8.16.0",
|
|
36
|
-
"pg-cache": "^1.4.
|
|
35
|
+
"pg-cache": "^1.4.6",
|
|
37
36
|
"postgraphile": "^4.14.1"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
39
|
"@types/pg": "^8.15.2",
|
|
40
|
+
"makage": "^0.1.6",
|
|
41
41
|
"nodemon": "^3.1.10",
|
|
42
42
|
"ts-node": "^10.9.2"
|
|
43
43
|
},
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"postgresql",
|
|
50
50
|
"launchql"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
53
53
|
}
|