diff options
author | Hakim El Hattab | 2013-02-27 17:03:21 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-02-27 17:03:28 -0500 |
commit | 7af90a2d8ac8391a8db101e86e2f4f115dd83285 (patch) | |
tree | c948adbd8d0a8b7aa5fd0cbde3f499c5c6841869 | |
parent | d7b92c9c6581dd33567a03bc2f0a3c7f4d5c305d (diff) |
attempt to fix grunt in travis ci build
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Gruntfile.js (renamed from gruntfile.js) | 4 |
2 files changed, 4 insertions, 2 deletions
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 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' } |