From 23f9105550a798325737fe3520c0d22b6150501c Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 23 May 2022 10:22:17 -0400 Subject: [PATCH] Updated the Grunt watch command to check for static files as well --- Gruntfile.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 5d23775..4f044b1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -82,6 +82,14 @@ module.exports = function(grunt) { atBegin: true, spawn: false } + }, + static: { + files: ['assets/static/*/*'], + tasks: ['copy'], + options: { + atBegin: true, + spawn: false + } } } });