vasuzex 2.1.33 → 2.1.35

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.
@@ -197,7 +197,8 @@ export class MailManager {
197
197
  */
198
198
  getConfig(name) {
199
199
  const mailers = this.app.config('mail.mailers', {});
200
- return mailers[name];
200
+ const config = mailers[name];
201
+ return config;
201
202
  }
202
203
 
203
204
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vasuzex",
3
- "version": "2.1.33",
3
+ "version": "2.1.35",
4
4
  "description": "Laravel-inspired framework for Node.js monorepos - V2 with optimized dependencies",
5
5
  "type": "module",
6
6
  "main": "./framework/index.js",