pg-ast 2.3.3 → 2.3.5

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 +25 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -51,6 +51,26 @@ const node = ast.A_Expr({
51
51
  const sqlCode = deparse([node]);
52
52
  ```
53
53
 
54
+ ## Education and Tutorials
55
+
56
+ 1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
57
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
58
+
59
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
60
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
61
+
62
+ 3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
63
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
64
+
65
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
66
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
67
+
68
+ 5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
69
+ TypeScript-native testing for Supabase with modern workflows.
70
+
71
+ 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
72
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
73
+
54
74
  ## Related LaunchQL Tooling
55
75
 
56
76
  ### 🧪 Testing
@@ -92,6 +112,11 @@ const sqlCode = deparse([node]);
92
112
  * [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
93
113
  * [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
94
114
 
115
+ ## Credits
116
+
117
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
118
+
119
+
95
120
  ## Disclaimer
96
121
 
97
122
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-ast",
3
- "version": "2.3.3",
3
+ "version": "2.3.5",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL ASTs in JS",
6
6
  "main": "index.js",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
24
  "clean": "rimraf dist/**",
25
- "prepare": "npm run build",
25
+ "prepack": "npm run build",
26
26
  "build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27
27
  "build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
28
28
  "build:proto": "ts-node scripts/pg-proto-parser",
@@ -44,5 +44,5 @@
44
44
  "@pgsql/types": "^17.6.1",
45
45
  "nested-obj": "0.0.1"
46
46
  },
47
- "gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
47
+ "gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
48
48
  }