From: Hakim El Hattab Date: Wed, 27 Feb 2013 22:03:21 +0000 (-0500) Subject: attempt to fix grunt in travis ci build X-Git-Tag: 2.3.0~32^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7af90a2d8ac8391a8db101e86e2f4f115dd83285;p=reveal.js.git attempt to fix grunt in travis ci build --- diff --git a/.travis.yml b/.travis.yml index baa0031..2d6cd8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ language: node_js node_js: - 0.8 +before_script: + - npm install -g grunt-cli \ No newline at end of file diff --git a/gruntfile.js b/Gruntfile.js similarity index 92% rename from gruntfile.js rename to Gruntfile.js index bd6858a..22502f6 100644 --- a/gruntfile.js +++ b/Gruntfile.js @@ -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 @@ -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' }