Skip to content

Commit 313cced

Browse files
authored
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
1 parent 309b0fe commit 313cced

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,16 @@
134134
},
135135
"nodemonConfig": {
136136
"verbose": true,
137-
"ext": "js",
137+
"ext": "js,yml",
138138
"ignore": [
139139
"package.json",
140140
"**/*.spec.js",
141141
"**/*.tester.js",
142142
"**/*.integration.js",
143143
"frontend/",
144144
"build/",
145-
"cypress/"
145+
"cypress/",
146+
".github/"
146147
]
147148
},
148149
"devDependencies": {

0 commit comments

Comments
 (0)