Skip to content

Commit

Permalink
fix(deps): Replaced 'punycode' with 'punycode.js' module
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Apr 25, 2024
1 parent da665c8 commit 4a15157
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 176 deletions.
8 changes: 8 additions & 0 deletions .ncurc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
upgrade: true,
reject: [
// api changes, check and fix
'eslint',
'grunt-eslint'
]
};
2 changes: 1 addition & 1 deletion lib/mail-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const libmime = require('libmime');
const addressparser = require('nodemailer/lib/addressparser');
const Transform = require('stream').Transform;
const Splitter = mailsplit.Splitter;
const punycode = require('punycode/');
const punycode = require('punycode.js');
const FlowedDecoder = require('mailsplit/lib/flowed-decoder');
const StreamHash = require('./stream-hash');
const iconv = require('iconv-lite');
Expand Down
Loading

0 comments on commit 4a15157

Please # to comment.