-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mailer.service): refactor usage of defaultsDeep
BREAKING CHANGE: The usage of in has been refactored. This could potentially alter the way configurations are merged in the application. Update your configurations if necessary to accommodate this change.
- Loading branch information
Showing
4 changed files
with
237 additions
and
1,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.10.0 | ||
v20.12.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
"Paweł Partyka <[email protected]>", | ||
"Alexandre TITEUX <[email protected]>", | ||
"Yanarp", | ||
"Joao vitor FREZYN <[email protected]>" | ||
"Joao vitor FREZYN <[email protected]>" | ||
], | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
|
@@ -54,24 +54,25 @@ | |
] | ||
}, | ||
"dependencies": { | ||
"@css-inline/css-inline": "0.14.0", | ||
"glob": "10.3.10", | ||
"preview-email": "3.0.19" | ||
"@css-inline/css-inline": "0.14.1", | ||
"glob": "10.3.12" | ||
}, | ||
"optionalDependencies": { | ||
"@types/ejs": "^3.1.5", | ||
"@types/pug": "^2.0.10", | ||
"ejs": "^3.1.9", | ||
"@types/mjml": "^4.7.4", | ||
"ejs": "^3.1.10", | ||
"handlebars": "^4.7.8", | ||
"mjml": "^4.15.3", | ||
"pug": "^3.0.2" | ||
"pug": "^3.0.2", | ||
"liquidjs": "^10.11.1" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "19.3.0", | ||
"@commitlint/config-angular": "19.0.3", | ||
"@commitlint/config-angular": "19.3.0", | ||
"@nestjs/common": "10.3.8", | ||
"@nestjs/core": "10.3.8", | ||
"@nestjs/testing": "10.3.3", | ||
"@nestjs/testing": "10.3.8", | ||
"@types/glob": "8.1.0", | ||
"@types/jest": "29.5.12", | ||
"@types/lodash": "4.17.0", | ||
|
@@ -83,8 +84,9 @@ | |
"jest": "29.7.0", | ||
"lint-staged": "15.2.2", | ||
"nodemailer": "6.9.13", | ||
"nodemailer-mock": "2.0.4", | ||
"nodemailer-mock": "2.0.6", | ||
"prettier": "3.2.5", | ||
"preview-email": "3.0.19", | ||
"reflect-metadata": "0.2.2", | ||
"rimraf": "5.0.5", | ||
"rxjs": "7.8.1", | ||
|
@@ -100,11 +102,12 @@ | |
"@nestjs/core": ">=7.0.9", | ||
"@types/ejs": ">=3.0.3", | ||
"@types/pug": ">=2.0.6", | ||
"@types/mjml": ">=4.7.4", | ||
"nodemailer": ">=6.4.6", | ||
"ejs": ">=3.1.2", | ||
"handlebars": ">=4.7.6", | ||
"mjml": ">=4.15.3", | ||
"nodemailer": ">=6.4.6", | ||
"pug": ">=3.0.1", | ||
"liquidjs": "^10.8.2" | ||
"liquidjs": ">=10.8.2" | ||
} | ||
} |
Oops, something went wrong.