Browse Source

attempt to fix grunt in travis ci build

embed
Hakim El Hattab 12 years ago
parent
commit
7af90a2d8a
  1. 2
      .travis.yml
  2. 4
      Gruntfile.js

2
.travis.yml

@ -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

4
gruntfile.js → Gruntfile.js

@ -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'
} }
Loading…
Cancel
Save