graphile-query 2.3.6 → 2.3.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
|
@@ -130,6 +130,8 @@ Supports full context, roles, and settings for advanced scenarios.
|
|
|
130
130
|
|
|
131
131
|
Lightweight version with no role or settings support.
|
|
132
132
|
|
|
133
|
+
---
|
|
134
|
+
|
|
133
135
|
## Education and Tutorials
|
|
134
136
|
|
|
135
137
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -145,9 +147,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
145
147
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
146
148
|
|
|
147
149
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
148
|
-
TypeScript-
|
|
150
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
151
|
+
|
|
152
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
153
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
149
154
|
|
|
150
|
-
|
|
155
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
151
156
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
152
157
|
|
|
153
158
|
## Related LaunchQL Tooling
|
|
@@ -201,4 +206,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
201
206
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
202
207
|
|
|
203
208
|
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.
|
|
204
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-query",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "graphile query",
|
|
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"
|
|
@@ -35,7 +34,8 @@
|
|
|
35
34
|
"postgraphile": "^4.14.1"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@types/pg": "^8.15.2"
|
|
37
|
+
"@types/pg": "^8.15.2",
|
|
38
|
+
"makage": "^0.1.6"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"graphql",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"graphile",
|
|
45
45
|
"launchql"
|
|
46
46
|
],
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
48
48
|
}
|