@graphql-mesh/config 8.0.24 → 8.0.25
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/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -457,7 +457,7 @@ async function processConfig(config, options) {
|
|
|
457
457
|
const { importName, moduleName, pluginFactory } = ENVELOP_CORE_PLUGINS_MAP[pluginName];
|
|
458
458
|
if (options.generateCode) {
|
|
459
459
|
importCodes.add(`import { ${importName} } from ${JSON.stringify(moduleName)};`);
|
|
460
|
-
codes.add(`additionalEnvelopPlugins[${pluginIndex}] = await ${importName}(${JSON.stringify(pluginConfig, null, 2)}))
|
|
460
|
+
codes.add(`additionalEnvelopPlugins[${pluginIndex}] = await ${importName}(${JSON.stringify(pluginConfig, null, 2)});`);
|
|
461
461
|
}
|
|
462
462
|
return pluginFactory(pluginConfig);
|
|
463
463
|
}
|
package/index.mjs
CHANGED
|
@@ -453,7 +453,7 @@ async function processConfig(config, options) {
|
|
|
453
453
|
const { importName, moduleName, pluginFactory } = ENVELOP_CORE_PLUGINS_MAP[pluginName];
|
|
454
454
|
if (options.generateCode) {
|
|
455
455
|
importCodes.add(`import { ${importName} } from ${JSON.stringify(moduleName)};`);
|
|
456
|
-
codes.add(`additionalEnvelopPlugins[${pluginIndex}] = await ${importName}(${JSON.stringify(pluginConfig, null, 2)}))
|
|
456
|
+
codes.add(`additionalEnvelopPlugins[${pluginIndex}] = await ${importName}(${JSON.stringify(pluginConfig, null, 2)});`);
|
|
457
457
|
}
|
|
458
458
|
return pluginFactory(pluginConfig);
|
|
459
459
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/config",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.25",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@graphql-mesh/runtime": "^0.44.24",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"@envelop/core": "3.0.2",
|
|
11
11
|
"@graphql-mesh/cache-localforage": "0.6.54",
|
|
12
12
|
"@graphql-mesh/cross-helpers": "0.2.6",
|
|
13
|
-
"@graphql-mesh/merger-bare": "0.15.
|
|
14
|
-
"@graphql-mesh/merger-stitching": "0.
|
|
13
|
+
"@graphql-mesh/merger-bare": "0.15.40",
|
|
14
|
+
"@graphql-mesh/merger-stitching": "0.17.0",
|
|
15
15
|
"@graphql-mesh/store": "0.8.56",
|
|
16
16
|
"@graphql-mesh/types": "0.85.1",
|
|
17
17
|
"@graphql-mesh/utils": "0.42.0",
|