graphile-test 2.1.7 → 2.1.9
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/esm/index.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +11 -4
package/esm/index.js
CHANGED
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -17,5 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.seed = void 0;
|
|
18
18
|
__exportStar(require("./clean"), exports);
|
|
19
19
|
__exportStar(require("./graphile-test"), exports);
|
|
20
|
+
__exportStar(require("./connect"), exports);
|
|
20
21
|
var pgsql_test_1 = require("pgsql-test");
|
|
21
22
|
Object.defineProperty(exports, "seed", { enumerable: true, get: function () { return pgsql_test_1.seed; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,12 +34,19 @@
|
|
|
34
34
|
"graphql-tag": "2.12.6"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/types": "^2.1.
|
|
38
|
-
"graphile-settings": "^2.1.
|
|
37
|
+
"@launchql/types": "^2.1.6",
|
|
38
|
+
"graphile-settings": "^2.1.9",
|
|
39
39
|
"graphql": "^15.5.2",
|
|
40
40
|
"mock-req": "^0.2.0",
|
|
41
41
|
"pg": "^8.16.0",
|
|
42
42
|
"postgraphile": "^4.14.1"
|
|
43
43
|
},
|
|
44
|
-
"
|
|
44
|
+
"keywords": [
|
|
45
|
+
"testing",
|
|
46
|
+
"graphql",
|
|
47
|
+
"graphile",
|
|
48
|
+
"launchql",
|
|
49
|
+
"test"
|
|
50
|
+
],
|
|
51
|
+
"gitHead": "a763e6c30aa6af1f5c744fa7463fc557def6edb3"
|
|
45
52
|
}
|