Skip to content

Commit

Permalink
attempt n2 to fix grunt in travis ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Feb 27, 2013
1 parent d7b92c9 commit 65cbe25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
language: node_js
node_js:
- 0.8
before_script:
- npm install -g grunt-cli
4 changes: 2 additions & 2 deletions gruntfile.js → Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = function(grunt) {
},

jshint: {
files: [ 'gruntfile.js', 'js/reveal.js' ]
files: [ 'Gruntfile.js', 'js/reveal.js' ]
},

// Tests will be added soon
Expand Down Expand Up @@ -64,7 +64,7 @@ module.exports = function(grunt) {
},

watch: {
files: [ 'gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
tasks: 'default'
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"node": "~0.8.0"
},
"scripts": {
"test": "grunt lint qunit"
"test": "grunt jshint"
},
"dependencies": {
"underscore": "~1.3.3",
Expand Down

0 comments on commit 65cbe25

Please sign in to comment.