@nestjs/common 9.1.1 → 9.1.2

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.
@@ -125,7 +125,7 @@ class ConfigurableModuleBuilder {
125
125
  return self.transformModuleDefinition({
126
126
  module: this,
127
127
  providers,
128
- }, options);
128
+ }, Object.assign(Object.assign({}, self.extras), options));
129
129
  }
130
130
  static [asyncMethodKey](options) {
131
131
  const providers = this.createAsyncProviders(options);
@@ -139,7 +139,7 @@ class ConfigurableModuleBuilder {
139
139
  module: this,
140
140
  imports: options.imports || [],
141
141
  providers,
142
- }, options);
142
+ }, Object.assign(Object.assign({}, self.extras), options));
143
143
  }
144
144
  static omitExtras(input, extras) {
145
145
  if (!extras) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/common",
3
- "version": "9.1.1",
3
+ "version": "9.1.2",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@common)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "homepage": "https://nestjs.com",