From 8fd3bd695455734569d86f77fe107378821d2c0b Mon Sep 17 00:00:00 2001 From: robertd Date: Sat, 5 Apr 2014 18:13:54 -0600 Subject: [PATCH] Fix grunt live reload task where *.coffee files were not being 'watched' properly --- app/templates/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/Gruntfile.js b/app/templates/Gruntfile.js index e7e3ffd..d2451fc 100644 --- a/app/templates/Gruntfile.js +++ b/app/templates/Gruntfile.js @@ -51,7 +51,7 @@ module.exports = function (grunt) { files: [ '<%%= yeoman.app %>/*.html', '{.tmp,<%%= yeoman.app %>}/styles/{,*/}*.css', - '{.tmp,<%%= yeoman.app %>}/scripts/{,*/}*.js', + '{.tmp,<%%= yeoman.app %>}/scripts/{,*/}*.{js,coffee}', '<%%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp}', '<%%= yeoman.app %>/scripts/templates/*.{ejs,mustache,hbs}', 'test/spec/**/*.js'