pg-env 1.1.3 → 1.1.6

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 +8 -3
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -113,6 +113,8 @@ The package reads the following environment variables:
113
113
  - `PGPASSWORD` - Database password
114
114
  - `PGDATABASE` - Database name
115
115
 
116
+ ---
117
+
116
118
  ## Education and Tutorials
117
119
 
118
120
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
@@ -128,9 +130,12 @@ Master the workflow for adding, organizing, and managing database changes with p
128
130
  Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
129
131
 
130
132
  5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
131
- TypeScript-native testing for Supabase with modern workflows.
133
+ Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
134
+
135
+ 6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
136
+ Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
132
137
 
133
- 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
138
+ 7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
134
139
  Common issues and solutions for pgpm, PostgreSQL, and testing.
135
140
 
136
141
  ## Related LaunchQL Tooling
@@ -183,4 +188,4 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
183
188
 
184
189
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
185
190
 
186
- 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.
191
+ 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-env",
3
- "version": "1.1.3",
3
+ "version": "1.1.6",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL environment configuration utilities",
6
6
  "main": "index.js",
@@ -20,11 +20,10 @@
20
20
  "url": "https://github.com/launchql/launchql/issues"
21
21
  },
22
22
  "scripts": {
23
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
23
+ "clean": "makage clean",
25
24
  "prepack": "npm run build",
26
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
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"
@@ -36,5 +35,8 @@
36
35
  "config",
37
36
  "launchql"
38
37
  ],
39
- "gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
38
+ "devDependencies": {
39
+ "makage": "^0.1.6"
40
+ },
41
+ "gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
40
42
  }