@newmo/graphql-codegen-fake-server-client 0.14.0 → 0.15.0
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/dist/config.js +1 -2
- package/dist/convertName.js +1 -2
- package/package.json +10 -10
package/dist/config.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.normalizeConfig =
|
|
3
|
+
exports.normalizeConfig = normalizeConfig;
|
|
4
4
|
function normalizeConfig(rawConfig) {
|
|
5
5
|
return {
|
|
6
6
|
typesFile: rawConfig.typesFile,
|
|
@@ -10,4 +10,3 @@ function normalizeConfig(rawConfig) {
|
|
|
10
10
|
namingConvention: rawConfig.namingConvention ?? "",
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
-
exports.normalizeConfig = normalizeConfig;
|
package/dist/convertName.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.convertName =
|
|
3
|
+
exports.convertName = convertName;
|
|
4
4
|
const visitor_plugin_common_1 = require("@graphql-codegen/visitor-plugin-common");
|
|
5
5
|
function convertName(node, config) {
|
|
6
6
|
const convert = config.namingConvention
|
|
@@ -12,4 +12,3 @@ function convertName(node, config) {
|
|
|
12
12
|
convertedName += config.typesSuffix;
|
|
13
13
|
return convertedName;
|
|
14
14
|
}
|
|
15
|
-
exports.convertName = convertName;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newmo/graphql-codegen-fake-server-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "GraphQL Codegen plugin for generating a fake server client",
|
|
6
6
|
"keywords": [
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
"codegen": "graphql-codegen --config graphql-codegen.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@graphql-codegen/plugin-helpers": "^5.0
|
|
41
|
-
"@graphql-codegen/visitor-plugin-common": "^5.
|
|
40
|
+
"@graphql-codegen/plugin-helpers": "^5.1.0",
|
|
41
|
+
"@graphql-codegen/visitor-plugin-common": "^5.6.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@graphql-codegen/cli": "^5.0.
|
|
45
|
-
"@graphql-codegen/typescript": "^4.
|
|
44
|
+
"@graphql-codegen/cli": "^5.0.4",
|
|
45
|
+
"@graphql-codegen/typescript": "^4.1.3",
|
|
46
46
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
47
47
|
"@tsconfig/node18": "^18.2.0",
|
|
48
48
|
"@tsconfig/strictest": "^2.0.1",
|
|
49
|
-
"@types/eslint": "^
|
|
50
|
-
"@types/node": "^
|
|
51
|
-
"graphql": "^16.
|
|
52
|
-
"typescript": "^5.
|
|
49
|
+
"@types/eslint": "^9.6.1",
|
|
50
|
+
"@types/node": "^22.13.1",
|
|
51
|
+
"graphql": "^16.10.0",
|
|
52
|
+
"typescript": "^5.7.3"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"graphql": "^16.8.1"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"access": "public",
|
|
62
62
|
"registry": "https://registry.npmjs.org/"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "dc64cbe216bd56c18001560b878d531578c81916"
|
|
65
65
|
}
|