Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
disintegrator committed May 29, 2015
1 parent edde761 commit aebefef
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = function(grunt) {
options: {
},
files: {
'tmp/default_options': ['test/fixtures/testing', 'test/fixtures/123'],
'tmp/default_options': 'test/fixtures/testing'
},
}
},
Expand All @@ -56,7 +56,7 @@ module.exports = function(grunt) {

// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
grunt.registerTask('test', ['clean', 'juice_email', 'nodeunit']);
grunt.registerTask('test', ['clean', 'juice', 'nodeunit']);

// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test']);
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"juice": "~1.2.0"
"juice": "^1.2.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt": "~0.4.1"
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt": "^0.4.5"
},
"peerDependencies": {
"grunt": "~0.4.1"
"grunt": "^0.4.5"
},
"keywords": [
"gruntplugin"
Expand Down
1 change: 0 additions & 1 deletion test/expected/custom_options

This file was deleted.

2 changes: 1 addition & 1 deletion test/expected/default_options
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Testing, 1 2 3.
<div style="color: red;"></div>
1 change: 0 additions & 1 deletion test/fixtures/123

This file was deleted.

2 changes: 1 addition & 1 deletion test/fixtures/testing
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Testing
<style>div{color:red;}</style><div></div>

0 comments on commit aebefef

Please sign in to comment.