graphql-modules 3.0.0-alpha-20220928142355-e1096a88 → 3.0.0-alpha-20220929075725-5fd82ef4

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.
@@ -141,6 +141,6 @@ export interface ApplicationConfig {
141
141
  * });
142
142
  * ```
143
143
  */
144
- executionContext?: ExecutionContextConfig;
144
+ executionContext: ExecutionContextConfig | false;
145
145
  }
146
146
  export {};
package/index.js CHANGED
@@ -2093,6 +2093,7 @@ function testModule(testedModule, config) {
2093
2093
  modules,
2094
2094
  providers: config === null || config === void 0 ? void 0 : config.providers,
2095
2095
  middlewares: config === null || config === void 0 ? void 0 : config.middlewares,
2096
+ executionContext: false,
2096
2097
  });
2097
2098
  }
2098
2099
  function transformModule(mod, config) {
package/index.mjs CHANGED
@@ -2090,6 +2090,7 @@ function testModule(testedModule, config) {
2090
2090
  modules,
2091
2091
  providers: config === null || config === void 0 ? void 0 : config.providers,
2092
2092
  middlewares: config === null || config === void 0 ? void 0 : config.middlewares,
2093
+ executionContext: false,
2093
2094
  });
2094
2095
  }
2095
2096
  function transformModule(mod, config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphql-modules",
3
- "version": "3.0.0-alpha-20220928142355-e1096a88",
3
+ "version": "3.0.0-alpha-20220929075725-5fd82ef4",
4
4
  "description": "Create reusable, maintainable, testable and extendable GraphQL modules",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {