Skip to content

Commit

Permalink
fix(Dependencies): Swaps bcrypt for bcryptjs (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladislav-999 authored Apr 9, 2020
1 parent 859b0bd commit 7cda9fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/src/auth/passport.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Strategy as BearerStrategy } from 'passport-http-bearer';
import { OAuth2Strategy as GoogleStrategy } from 'passport-google-oauth';
import Promise from 'bluebird';
import CustomStrategy from 'passport-custom';
import bcrypt from 'bcrypt';
import bcrypt from 'bcryptjs';
import jwt from 'jsonwebtoken';
import { find, get, omit, omitBy } from 'lodash';
import { fromJS } from 'immutable';
Expand Down
2 changes: 1 addition & 1 deletion lib/models/user.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import bcrypt from 'bcrypt';
import bcrypt from 'bcryptjs';
import _ from 'lodash';
import moment from 'moment';
import mongoose from 'mongoose';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"axios": "^0.18.0",
"azure-sb": "^0.11.0",
"babel-runtime": "6.22.0",
"bcrypt": "^3.0.7",
"bcryptjs": "^2.4.3",
"bluebird": "^3.4.6",
"body-parser": "^1.14.1",
"boolean": "^0.1.0",
Expand Down

0 comments on commit 7cda9fa

Please sign in to comment.