@adobe/aio-cli-plugin-api-mesh 5.6.5 → 5.6.6-alpha.1
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/package.json +2 -2
- package/src/utils.js +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aio-cli-plugin-api-mesh",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.6-alpha.1",
|
|
4
4
|
"description": "Adobe I/O CLI plugin to develop and manage API mesh sources",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oclif-plugin"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"version": "oclif-dev readme && git add README.md"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@adobe-apimesh/mesh-builder": "^2.4.
|
|
41
|
+
"@adobe-apimesh/mesh-builder": "^2.4.1-alpha.1",
|
|
42
42
|
"@adobe/aio-cli-lib-console": "^5.0.0",
|
|
43
43
|
"@adobe/aio-lib-core-config": "^5.0.0",
|
|
44
44
|
"@adobe/aio-lib-core-logging": "^3.0.0",
|
package/src/utils.js
CHANGED
|
@@ -187,6 +187,11 @@ function getFilesInMeshConfig(data, meshConfigName) {
|
|
|
187
187
|
if (source.handler.openapi && !fileURLRegex.test(source.handler.openapi.source)) {
|
|
188
188
|
filesList.push(source.handler.openapi.source);
|
|
189
189
|
}
|
|
190
|
+
|
|
191
|
+
// Graphql handler
|
|
192
|
+
if (source.handler.graphql?.source && !fileURLRegex.test(source.handler.graphql.source)) {
|
|
193
|
+
filesList.push(source.handler.graphql.source);
|
|
194
|
+
}
|
|
190
195
|
});
|
|
191
196
|
|
|
192
197
|
// Additional Resolvers
|