pgpm 0.2.5 → 0.2.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 +27 -2
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -137,8 +137,8 @@ psql -d mydb1 -c "SELECT faker.city('MI');"
137
137
  ### Testing a pgpm module in a workspace
138
138
 
139
139
  ```bash
140
- # 1. Install dependencies
141
- pgpm install
140
+ # 1. Install workspace dependencies
141
+ pnpm install
142
142
 
143
143
  # 2. Enter the packages/<yourmodule>
144
144
  cd packages/yourmodule
@@ -338,6 +338,26 @@ Most commands support these global options:
338
338
  - `--version, -v` - Show version information
339
339
  - `--cwd <dir>` - Set working directory
340
340
 
341
+ ## Education and Tutorials
342
+
343
+ 1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
344
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
345
+
346
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
347
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
348
+
349
+ 3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
350
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
351
+
352
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
353
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
354
+
355
+ 5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
356
+ TypeScript-native testing for Supabase with modern workflows.
357
+
358
+ 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
359
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
360
+
341
361
  ## Related LaunchQL Tooling
342
362
 
343
363
  ### 🧪 Testing
@@ -379,6 +399,11 @@ Most commands support these global options:
379
399
  * [@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.
380
400
  * [@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.
381
401
 
402
+ ## Credits
403
+
404
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
405
+
406
+
382
407
  ## Disclaimer
383
408
 
384
409
  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": "pgpm",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL Package Manager - Database migration and package management CLI",
6
6
  "main": "index.js",
@@ -45,17 +45,17 @@
45
45
  "ts-node": "^10.9.2"
46
46
  },
47
47
  "dependencies": {
48
- "@launchql/core": "^2.15.1",
49
- "@launchql/env": "^2.5.0",
50
- "@launchql/logger": "^1.1.5",
51
- "@launchql/templatizer": "^2.5.0",
52
- "@launchql/types": "^2.8.0",
48
+ "@launchql/core": "^2.15.2",
49
+ "@launchql/env": "^2.5.1",
50
+ "@launchql/logger": "^1.1.6",
51
+ "@launchql/templatizer": "^2.5.1",
52
+ "@launchql/types": "^2.8.1",
53
53
  "chalk": "^4.1.0",
54
54
  "inquirerer": "^2.0.8",
55
55
  "js-yaml": "^4.1.0",
56
56
  "minimist": "^1.2.8",
57
- "pg-cache": "^1.4.1",
58
- "pg-env": "^1.1.2",
57
+ "pg-cache": "^1.4.2",
58
+ "pg-env": "^1.1.3",
59
59
  "shelljs": "^0.9.2"
60
60
  },
61
61
  "keywords": [
@@ -70,5 +70,5 @@
70
70
  "pg",
71
71
  "pgsql"
72
72
  ],
73
- "gitHead": "cdcef66768541f6ca352d89e52fe33e8cc0c8ff0"
73
+ "gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
74
74
  }