graphile-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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. 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.5",
3
+ "version": "1.4.7",
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
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
23
+ "clean": "makage clean",
25
24
  "prepack": "npm run build",
26
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
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.9",
32
+ "@launchql/logger": "^1.1.11",
34
33
  "lru-cache": "^11.1.0",
35
34
  "pg": "^8.16.0",
36
- "pg-cache": "^1.4.5",
35
+ "pg-cache": "^1.4.7",
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": "4cd832ebee39d7be9375340e8e3283692d15b464"
52
+ "gitHead": "e85e82c301d859ff7e2317bf07345156af9ff8d1"
53
53
  }