From cb3c8742a8c1c83786e92aa4869d229018608342 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sat, 19 Feb 2022 09:53:45 -0500 Subject: [PATCH] Narrowed Nodemon's scope so it doesn't reload the site for asset changes --- bin/docker-watch.sh | 0 nodemon.json | 2 +- public/scripts/vorkath.coffee | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 bin/docker-watch.sh diff --git a/bin/docker-watch.sh b/bin/docker-watch.sh old mode 100644 new mode 100755 diff --git a/nodemon.json b/nodemon.json index 42bac66..dad7b4f 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,5 +1,5 @@ { "ext": "js", "verbose": true, - "ignore": ["*.test.js", "fixtures/*"] + "ignore": ["*.test.js", "public"] } diff --git a/public/scripts/vorkath.coffee b/public/scripts/vorkath.coffee index 687f4fa..769b7c1 100644 --- a/public/scripts/vorkath.coffee +++ b/public/scripts/vorkath.coffee @@ -1,2 +1,2 @@ $ -> - console.log('This is a test!') + console.log('This is a test.')