From 39eefb083edaa48f25244cce55eff023c97ee771 Mon Sep 17 00:00:00 2001 From: David Long Date: Fri, 4 Apr 2014 10:50:52 -0400 Subject: [PATCH] Configure Grunt to reload when Gruntfile changes --- Gruntfile.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index eff6cefda..ba3fb2210 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -144,7 +144,12 @@ module.exports = function(grunt) { }, watch: { - grunt: { files: ['Gruntfile.js'] }, + grunt: { + options: { + reload: true + }, + files: ['Gruntfile.js'] + }, karma: { files: [ 'dist/assets/js/*.js', -- 2.47.2