Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Feb 26, 2014
1 parent c08c7bb commit 01c4d9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ module.exports = function(grunt) {
cssmin: {
dist: {
options: {
compatibility: "ie8",
keepSpecialComments: 0,
report: "min",
selectorsMergeMode: "ie8"
report: "min"
},
files: {
'dist/css/other.css': '<%= uncss.dist.dest %>'
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@
"grunt": "~0.4.2",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.6.0",
"grunt-contrib-connect": "~0.7.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.7.0",
"grunt-contrib-cssmin": "~0.8.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-lib-contrib": "~0.6.1",
"grunt-processhtml": "~0.3.0",
"grunt-simple-mocha": "~0.4.0",
"load-grunt-tasks": "~0.3.0",
"load-grunt-tasks": "~0.4.0",
"mocha": "~1.17.1",
"time-grunt": "~0.2.8"
"time-grunt": "~0.2.9"
},
"directories": {
"test": "tests"
Expand Down

3 comments on commit 01c4d9c

@XhmikosR
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apparently, load-grunt-tasks 0.4.0 breaks node.js 0.8 compatibility. If you still want to support that @addyosmani feel free to revert back to 0.3.0. Otherwise we should update Travis and the engines property for 0.10 only.

@addyosmani
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we're going to have to roll back on load-grunt-tasks 0.4.0 for now. I'll check their tracker in case this change is a hard one and they don't intend on supporting 0.8 anymore at all. Thanks for the comment.

@XhmikosR
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think they want to support v0.8. On the other hand you could do something simple yourself, to replace the module.

Please sign in to comment.