Skip to content

Commit

Permalink
Update lodash.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 7, 2016
1 parent c8506f1 commit 6ecb76e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"test": "grunt test"
},
"dependencies": {
"async": "^0.9.0",
"async": "^1.5.2",
"chalk": "^1.0.0",
"less": "~2.6.0",
"lodash": "^3.2.0"
"lodash": "^4.8.2"
},
"devDependencies": {
"grunt": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tasks/less.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ module.exports = function(grunt) {
};

var parseVariableOptions = function(options) {
var pairs = _.pairs(options);
var pairs = _.toPairs(options);
var output = '';
pairs.forEach(function(pair) {
output += '@' + pair[0] + ':' + pair[1] + ';';
Expand Down

0 comments on commit 6ecb76e

Please sign in to comment.