diff options
author | jzgdev | 2015-07-01 22:51:01 -0700 |
---|---|---|
committer | jzgdev | 2015-07-01 22:51:01 -0700 |
commit | cee64858dd0e0bb4aed195f04dc6d74b2980cdfa (patch) | |
tree | 197d35aa2cfefec767a30972a2188b8a60bfc832 | |
parent | 7225d84248466b713c3a00c5e6cca40cf868bfe6 (diff) |
Gruntfile.js: watch tasks restructured
-rw-r--r-- | Gruntfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index a851845..8be2929 100644 --- a/Gruntfile.js +++ b/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 } } |