Skip to content

Commit

Permalink
fix(deps): update email-validator to v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rocwind committed Aug 20, 2021
1 parent a1cca6a commit e670a13
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"chalk": "4.1.2",
"cli-table3": "0.6.0",
"code-push": "2.0.7",
"email-validator": "1.2.3",
"email-validator": "2.0.4",
"gradle-to-js": "2.0.0",
"jsonwebtoken": "8.5.1",
"mkdirp": "1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion src/command-executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var prompt = require('prompt');
import rimraf from 'rimraf';
import which from 'which';
import wordwrap = require('wordwrap');
import emailValidator from 'email-validator';
import * as cli from './definitions/cli';
import hooks from './release-hooks/index';
import {
Expand Down Expand Up @@ -44,7 +45,6 @@ var configFilePath: string = path.join(
process.env.LOCALAPPDATA || process.env.HOME,
'.code-push.config',
);
var emailValidator = require('email-validator');
var packageJson = require('../package.json');

const CLI_HEADERS: Headers = {
Expand Down

0 comments on commit e670a13

Please sign in to comment.