Skip to content

Commit

Permalink
fix(dependencies): fix lodash is missing bug
Browse files Browse the repository at this point in the history
Unfortunately I assumed that lodash was a dependency already. In reality it was a dev dependency.
This meant that if you had your NODE_ENV set to production then you would experience this strange
but expected error. This fix moves lodash to be a full dependency.

Closes #61
  • Loading branch information
jimthedev committed Nov 9, 2015
1 parent 0c71d72 commit 4160696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"codecov.io": "0.1.6",
"ghooks": "0.3.2",
"istanbul": "0.3.22",
"lodash": "3.10.1",
"mocha": "2.3.3",
"semantic-release": "^4.3.5"
},
Expand All @@ -63,6 +62,7 @@
"gulp": "3.9.0",
"gulp-git": "1.6.0",
"inquirer": "0.11.0",
"lodash": "3.10.1",
"minimist": "1.2.0",
"node-uuid": "1.4.3",
"nodemon": "1.8.1",
Expand Down

0 comments on commit 4160696

Please sign in to comment.