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
This commit is contained in:
jNullj
2025-03-08 20:20:29 +02:00
committed by GitHub
parent 309b0fe33f
commit 313cced050

View File

@@ -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": {