supabase-test 2.16.2 → 2.16.4
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 +11 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -679,6 +679,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
679
679
|
|
|
680
680
|
* [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.
|
|
681
681
|
|
|
682
|
+
Install skills for AI coding agents:
|
|
683
|
+
|
|
684
|
+
```bash
|
|
685
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
686
|
+
npx skills add constructive-io/constructive-skills
|
|
687
|
+
|
|
688
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
689
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
690
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
691
|
+
```
|
|
692
|
+
|
|
682
693
|
## Credits
|
|
683
694
|
|
|
684
695
|
**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supabase-test",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.4",
|
|
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",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"@pgpmjs/types": "^2.29.0",
|
|
56
56
|
"deepmerge": "^4.3.1",
|
|
57
57
|
"pg-env": "^1.16.0",
|
|
58
|
-
"pgsql-test": "^4.16.
|
|
58
|
+
"pgsql-test": "^4.16.4"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"makage": "^0.3.0"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "659c7776183c8dc497e640c384e8d1af45965065"
|
|
64
64
|
}
|