supabase-test 0.1.3 → 0.1.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.
- package/README.md +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -662,6 +662,7 @@ const { conn, db, teardown } = await getConnections({
|
|
|
662
662
|
|
|
663
663
|
### 🧰 CLI & Codegen
|
|
664
664
|
|
|
665
|
+
* [pgpm](https://github.com/launchql/launchql/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
665
666
|
* [@launchql/cli](https://github.com/launchql/launchql/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
666
667
|
* [launchql/launchql-gen](https://github.com/launchql/launchql/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
667
668
|
* [@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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supabase-test",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"author": "Interweb <developers@interweb.io>",
|
|
5
5
|
"description": "supabase-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests with Supabase defaults baked in",
|
|
6
6
|
"main": "index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"scripts": {
|
|
45
45
|
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
|
|
46
46
|
"clean": "rimraf dist/**",
|
|
47
|
-
"
|
|
47
|
+
"prepack": "npm run build",
|
|
48
48
|
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
|
|
49
49
|
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
|
|
50
50
|
"lint": "eslint . --fix",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"test:watch": "jest --watch"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@launchql/types": "^2.7.
|
|
56
|
-
"pg-env": "^1.1.
|
|
57
|
-
"pgsql-test": "^2.13.
|
|
55
|
+
"@launchql/types": "^2.7.2",
|
|
56
|
+
"pg-env": "^1.1.2",
|
|
57
|
+
"pgsql-test": "^2.13.5"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "a32146b0033c550907a03faa374e7101f8f15b02"
|
|
60
60
|
}
|