attempt n2 to fix grunt in travis ci build

This commit is contained in:
Hakim El Hattab 2013-02-27 17:03:21 -05:00
parent d7b92c9c65
commit 65cbe25a02
3 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,5 @@
language: node_js language: node_js
node_js: node_js:
- 0.8 - 0.8
before_script:
- npm install -g grunt-cli

View File

@ -16,7 +16,7 @@ module.exports = function(grunt) {
}, },
jshint: { jshint: {
files: [ 'gruntfile.js', 'js/reveal.js' ] files: [ 'Gruntfile.js', 'js/reveal.js' ]
}, },
// Tests will be added soon // Tests will be added soon
@ -64,7 +64,7 @@ module.exports = function(grunt) {
}, },
watch: { watch: {
files: [ 'gruntfile.js', 'js/reveal.js', 'css/reveal.css' ], files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
tasks: 'default' tasks: 'default'
} }

View File

@ -16,7 +16,7 @@
"node": "~0.8.0" "node": "~0.8.0"
}, },
"scripts": { "scripts": {
"test": "grunt lint qunit" "test": "grunt jshint"
}, },
"dependencies": { "dependencies": {
"underscore": "~1.3.3", "underscore": "~1.3.3",