Browse Source

Gruntfile.js: watch tasks restructured

jzgdev 9 years ago
parent
commit
cee64858dd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Gruntfile.js

+ 3 - 3
Gruntfile.js

@@ -112,9 +112,6 @@ module.exports = function(grunt) {
 		},
 
 		watch: {
-			options: {
-				livereload: true
-			},
 			js: {
 				files: [ 'Gruntfile.js', 'js/reveal.js' ],
 				tasks: 'js'
@@ -129,6 +126,9 @@ module.exports = function(grunt) {
 			},
 			html: {
 				files: [ 'index.html']
+			},
+			options: {
+				livereload: true
 			}
 		}