Merge pull request #3247 from strongloop/update-deps
Update runtime dependencies
This commit is contained in:
commit
01ce9b5f5a
|
@ -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