Skip to content

Commit 4160696

Browse files
committed
fix(dependencies): fix lodash is missing bug
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
1 parent 0c71d72 commit 4160696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
"codecov.io": "0.1.6",
5050
"ghooks": "0.3.2",
5151
"istanbul": "0.3.22",
52-
"lodash": "3.10.1",
5352
"mocha": "2.3.3",
5453
"semantic-release": "^4.3.5"
5554
},
@@ -63,6 +62,7 @@
6362
"gulp": "3.9.0",
6463
"gulp-git": "1.6.0",
6564
"inquirer": "0.11.0",
65+
"lodash": "3.10.1",
6666
"minimist": "1.2.0",
6767
"node-uuid": "1.4.3",
6868
"nodemon": "1.8.1",

0 commit comments

Comments
 (0)