File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ ChangesHunter.prototype = {
41
41
// Markup only is required for "View All" pages. It will get loaded later on.
42
42
// If any of these is missing, mark pattern for recompile
43
43
[ renderedTemplatePath , markupOnlyPath ] . forEach ( renderedFile =>
44
+
44
45
// Prevent error message if file does not exist
45
46
fs . accessSync ( renderedFile , fs . F_OK )
46
47
) ;
@@ -88,12 +89,12 @@ ChangesHunter.prototype = {
88
89
}
89
90
} ,
90
91
91
- needsRebuild : function ( lastModified , p ) {
92
+ needsRebuild : function ( lastModified , p ) {
92
93
if ( p . compileState !== CompileState . CLEAN || ! p . lastModified ) {
93
94
return true ;
94
95
}
95
96
return p . lastModified >= lastModified ;
96
97
}
97
98
} ;
98
99
99
- module . exports = ChangesHunter ;
100
+ module . exports = ChangesHunter ;
You can’t perform that action at this time.
0 commit comments