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:
@@ -134,7 +134,7 @@
|
|||||||
},
|
},
|
||||||
"nodemonConfig": {
|
"nodemonConfig": {
|
||||||
"verbose": true,
|
"verbose": true,
|
||||||
"ext": "js",
|
"ext": "js,yml",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"package.json",
|
"package.json",
|
||||||
"**/*.spec.js",
|
"**/*.spec.js",
|
||||||
@@ -142,7 +142,8 @@
|
|||||||
"**/*.integration.js",
|
"**/*.integration.js",
|
||||||
"frontend/",
|
"frontend/",
|
||||||
"build/",
|
"build/",
|
||||||
"cypress/"
|
"cypress/",
|
||||||
|
".github/"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user