Update runtime dependencies
- isemail@2 - loopback-phase@3 Skip update of nodemailer because it changed the license to GPL-like one
This commit is contained in:
parent
ed4f56c7f8
commit
8510982bea
|
@ -936,7 +936,7 @@ function emailValidator(err, done) {
|
|||
if (typeof value !== 'string')
|
||||
return err('string');
|
||||
if (value === '') return;
|
||||
if (!isEmail(value))
|
||||
if (!isEmail.validate(value))
|
||||
return err('email');
|
||||
}
|
||||
|
||||
|
|
|
@ -47,10 +47,10 @@
|
|||
"ejs": "^2.3.1",
|
||||
"express": "^4.14.0",
|
||||
"inflection": "^1.6.0",
|
||||
"isemail": "^1.2.0",
|
||||
"isemail": "^2.2.1",
|
||||
"loopback-connector-remote": "^3.0.0",
|
||||
"loopback-datasource-juggler": "^3.0.0",
|
||||
"loopback-phase": "^1.2.0",
|
||||
"loopback-phase": "^3.0.0",
|
||||
"nodemailer": "^2.5.0",
|
||||
"nodemailer-stub-transport": "^1.0.0",
|
||||
"serve-favicon": "^2.2.0",
|
||||
|
|
Loading…
Reference in New Issue