Skip to content

Commit 65cbe25

Browse files
committed
attempt n2 to fix grunt in travis ci build
1 parent d7b92c9 commit 65cbe25

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
language: node_js
22
node_js:
33
- 0.8
4+
before_script:
5+
- npm install -g grunt-cli

gruntfile.js Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
1616
},
1717

1818
jshint: {
19-
files: [ 'gruntfile.js', 'js/reveal.js' ]
19+
files: [ 'Gruntfile.js', 'js/reveal.js' ]
2020
},
2121

2222
// Tests will be added soon
@@ -64,7 +64,7 @@ module.exports = function(grunt) {
6464
},
6565

6666
watch: {
67-
files: [ 'gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
67+
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ],
6868
tasks: 'default'
6969
}
7070

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"node": "~0.8.0"
1717
},
1818
"scripts": {
19-
"test": "grunt lint qunit"
19+
"test": "grunt jshint"
2020
},
2121
"dependencies": {
2222
"underscore": "~1.3.3",

0 commit comments

Comments
 (0)