supabase-test 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 +2 -1
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -625,6 +625,8 @@ const { conn, db, teardown } = await getConnections({
|
|
|
625
625
|
});
|
|
626
626
|
```
|
|
627
627
|
|
|
628
|
+
---
|
|
629
|
+
|
|
628
630
|
## Education and Tutorials
|
|
629
631
|
|
|
630
632
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -699,4 +701,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
699
701
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
700
702
|
|
|
701
703
|
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.
|
|
702
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supabase-test",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"pg-client"
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
|
-
"
|
|
46
|
-
"
|
|
45
|
+
"clean": "makage clean",
|
|
46
|
+
"copy": "makage assets",
|
|
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",
|
|
@@ -52,9 +52,12 @@
|
|
|
52
52
|
"test:watch": "jest --watch"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@launchql/types": "^2.8.
|
|
56
|
-
"pg-env": "^1.1.
|
|
57
|
-
"pgsql-test": "^2.14.
|
|
55
|
+
"@launchql/types": "^2.8.5",
|
|
56
|
+
"pg-env": "^1.1.6",
|
|
57
|
+
"pgsql-test": "^2.14.8"
|
|
58
58
|
},
|
|
59
|
-
"
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"makage": "^0.1.6"
|
|
61
|
+
},
|
|
62
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
60
63
|
}
|