pg-query-context 2.2.6 → 2.2.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.
- package/README.md +7 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -87,6 +87,8 @@ app.post('/secure-endpoint', async (req, res) => {
|
|
|
87
87
|
});
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
+
---
|
|
91
|
+
|
|
90
92
|
## Education and Tutorials
|
|
91
93
|
|
|
92
94
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -102,9 +104,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
102
104
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
103
105
|
|
|
104
106
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
105
|
-
TypeScript-
|
|
107
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
108
|
+
|
|
109
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
110
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
106
111
|
|
|
107
|
-
|
|
112
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
108
113
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
109
114
|
|
|
110
115
|
## Related LaunchQL Tooling
|
|
@@ -158,4 +163,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
158
163
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
159
164
|
|
|
160
165
|
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.
|
|
161
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-query-context",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.9",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "pg query context",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,11 +20,10 @@
|
|
|
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"
|
|
@@ -33,7 +32,8 @@
|
|
|
33
32
|
"pg": "^8.16.0"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
|
-
"@types/pg": "^8.15.2"
|
|
35
|
+
"@types/pg": "^8.15.2",
|
|
36
|
+
"makage": "^0.1.6"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"postgresql",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"pg",
|
|
43
43
|
"graphile"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
46
46
|
}
|