From 313cced0501f17a8dae1fc6455d9669ed362e4cf Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Sat, 8 Mar 2025 20:20:29 +0200 Subject: [PATCH] nodemon watch yml conf files and ignore .github (#10924) this makes nodemon restart on every configuration change ignored .github folder as it is not needed for nodemon to watch and has yml files Fixes #10923 --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 73ce0773cb..0be8870713 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ }, "nodemonConfig": { "verbose": true, - "ext": "js", + "ext": "js,yml", "ignore": [ "package.json", "**/*.spec.js", @@ -142,7 +142,8 @@ "**/*.integration.js", "frontend/", "build/", - "cypress/" + "cypress/", + ".github/" ] }, "devDependencies": {