File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ export default function NetlifyCmsModule(moduleOptions) {
26
26
const config = configManager . config ;
27
27
28
28
const ADMIN_PATH = config . adminPath ;
29
- const EXTENSIONS_DIR = config . extensionsDir ;
30
29
const BUILD_DIR = config . buildDir ;
31
30
32
31
// This will be called once when builder started
@@ -119,10 +118,7 @@ export default function NetlifyCmsModule(moduleOptions) {
119
118
} ) ;
120
119
121
120
// Start watching config file
122
- const patterns = [
123
- Utils . r ( configManager . cmsConfigFile . fileName ) ,
124
- Utils . r ( EXTENSIONS_DIR )
125
- ] ;
121
+ const patterns = [ Utils . r ( configManager . cmsConfigFile . fileName ) ] ;
126
122
127
123
const options = {
128
124
...this . options . watchers . chokidar ,
@@ -131,7 +127,6 @@ export default function NetlifyCmsModule(moduleOptions) {
131
127
132
128
const refreshFiles = _ . debounce ( ( ) => {
133
129
configManager . cmsConfigFile . readFile ( ) ;
134
- debug ( `Rebuilding...` ) ;
135
130
this . nuxt . renderer . netlifyWebpackDevMiddleware . invalidate ( ) ;
136
131
} , 200 ) ;
137
132
You can’t perform that action at this time.
0 commit comments