Skip to content

Commit

Permalink
change bcrypt to bcryptjs for compatibility with osx
Browse files Browse the repository at this point in the history
  • Loading branch information
puppycodes committed Jul 5, 2017
1 parent 891a32a commit 41df7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/pilot.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const bcrypt = require('bcrypt');
const bcrypt = require('bcryptjs');
const Ride = require('./ride');

// Use native promises.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"start": "node app.js"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.2",
Expand Down

0 comments on commit 41df7a1

Please sign in to comment.