From 78cdd3fe131fb5071b599e8c91fb9901bfdad436 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 4 May 2021 16:46:57 +0100 Subject: [PATCH] Added core root files to grunt watch list properly - We no longer have a core/index.js file - Instead we have a small set of root core files that should all trigger a watch reload --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index e2a72f3e83..2a58f2b16b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -94,7 +94,7 @@ const configureGrunt = function (grunt) { 'core/server/**/*.js', 'core/shared/**/*.js', 'core/frontend/**/*.js', - 'core/index.js', + 'core/*.js', 'index.js', 'config.*.json', '!config.testing.json'