@graphql-tools/git-loader 8.0.12 → 8.0.13
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/cjs/load-git.js +4 -5
- package/cjs/parse.js +1 -2
- package/package.json +3 -3
package/cjs/load-git.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.readTreeAtRef = readTreeAtRef;
|
|
4
|
+
exports.readTreeAtRefSync = readTreeAtRefSync;
|
|
5
|
+
exports.loadFromGit = loadFromGit;
|
|
6
|
+
exports.loadFromGitSync = loadFromGitSync;
|
|
4
7
|
const tslib_1 = require("tslib");
|
|
5
8
|
const child_process_1 = require("child_process");
|
|
6
9
|
const os_1 = tslib_1.__importDefault(require("os"));
|
|
@@ -32,7 +35,6 @@ async function readTreeAtRef(ref) {
|
|
|
32
35
|
throw createTreeError(error);
|
|
33
36
|
}
|
|
34
37
|
}
|
|
35
|
-
exports.readTreeAtRef = readTreeAtRef;
|
|
36
38
|
/**
|
|
37
39
|
* @internal
|
|
38
40
|
*/
|
|
@@ -46,7 +48,6 @@ function readTreeAtRefSync(ref) {
|
|
|
46
48
|
throw createTreeError(error);
|
|
47
49
|
}
|
|
48
50
|
}
|
|
49
|
-
exports.readTreeAtRefSync = readTreeAtRefSync;
|
|
50
51
|
/**
|
|
51
52
|
* @internal
|
|
52
53
|
*/
|
|
@@ -67,7 +68,6 @@ async function loadFromGit(input) {
|
|
|
67
68
|
throw createLoadError(error);
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
|
-
exports.loadFromGit = loadFromGit;
|
|
71
71
|
/**
|
|
72
72
|
* @internal
|
|
73
73
|
*/
|
|
@@ -79,4 +79,3 @@ function loadFromGitSync(input) {
|
|
|
79
79
|
throw createLoadError(error);
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
exports.loadFromGitSync = loadFromGitSync;
|
package/cjs/parse.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.parse =
|
|
3
|
+
exports.parse = parse;
|
|
4
4
|
const utils_1 = require("@graphql-tools/utils");
|
|
5
5
|
/**
|
|
6
6
|
* @internal
|
|
@@ -13,4 +13,3 @@ function parse({ path, pointer, content, options, }) {
|
|
|
13
13
|
return (0, utils_1.parseGraphQLJSON)(pointer, content, options);
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
exports.parse = parse;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/git-loader",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.13",
|
|
4
4
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
11
|
-
"@graphql-tools/utils": "^10.6.
|
|
10
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.8",
|
|
11
|
+
"@graphql-tools/utils": "^10.6.3",
|
|
12
12
|
"is-glob": "4.0.3",
|
|
13
13
|
"micromatch": "^4.0.8",
|
|
14
14
|
"tslib": "^2.4.0",
|