pgpm 0.2.6 → 0.2.8
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 +25 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.2.8",
|
|
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.
|
|
49
|
-
"@launchql/env": "^2.5.
|
|
50
|
-
"@launchql/logger": "^1.1.
|
|
51
|
-
"@launchql/templatizer": "^2.5.
|
|
52
|
-
"@launchql/types": "^2.8.
|
|
48
|
+
"@launchql/core": "^2.15.3",
|
|
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.
|
|
58
|
-
"pg-env": "^1.1.
|
|
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": "
|
|
73
|
+
"gitHead": "da2bd9606bd5e1d4e63b7d74f08920975980e541"
|
|
74
74
|
}
|