Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Mar 25, 2021
1 parent c43914f commit a3fd59c
Show file tree
Hide file tree
Showing 3 changed files with 1,514 additions and 1,438 deletions.
32 changes: 16 additions & 16 deletions package.json
Expand Up @@ -16,39 +16,39 @@
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)"
],
"dependencies": {
"@ladjs/i18n": "^7.0.1",
"@ladjs/i18n": "^7.1.0",
"consolidate": "^0.16.0",
"debug": "^4.3.1",
"get-paths": "^0.0.7",
"html-to-text": "^6.0.0",
"juice": "^7.0.0",
"lodash": "^4.17.20",
"nodemailer": "^6.4.17",
"preview-email": "^3.0.3"
"lodash": "^4.17.21",
"nodemailer": "^6.5.0",
"preview-email": "^3.0.4"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"ava": "^3.15.0",
"cheerio": "^1.0.0-rc.5",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"eslint-config-xo-lass": "^1.0.4",
"ejs": "^3.1.6",
"eslint": "^7.22.0",
"eslint-config-xo-lass": "^1.0.5",
"eslint-plugin-node": "^11.1.0",
"fixpack": "^4.0.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"nodemailer-sendgrid": "^1.0.3",
"nyc": "^15.1.0",
"pug": "^3.0.0",
"pug": "^3.0.2",
"remark-cli": "^9.0.0",
"remark-preset-github": "^4.0.1",
"xo": "^0.37.1"
"xo": "^0.38.2"
},
"engines": {
"node": ">=8.3.0"
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Expand Up @@ -118,9 +118,9 @@ class Email {

// Override juice global settings https://github.com/Automattic/juice#juicecodeblocks
if (_.isObject(this.config.juiceSettings)) {
_.forEach(this.config.juiceSettings, (key, value) => {
for (const [key, value] of Object.entries(this.config.juiceSettings)) {
juice[key] = value;
});
}
}

debug('transformed config %O', this.config);
Expand Down

0 comments on commit a3fd59c

Please sign in to comment.