Adding Livereload to Jade files

This commit is contained in:
Amos Haviv
2013-09-07 13:13:06 +03:00
parent 39db68138a
commit 517fc6f9a8

View File

@@ -3,6 +3,12 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
jade: {
files: ['app/views/**'],
options: {
livereload: true,
},
},
html: {
files: ['public/views/**'],
options: {