File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 107107 "bluebird" : " ^3.7.2" ,
108108 "canonical-path" : " 1.0.0" ,
109109 "chalk" : " ^4.1.0" ,
110- "chokidar" : " ^3.5.1 " ,
110+ "chokidar" : " ^4.0.0 " ,
111111 "convert-source-map" : " ^1.5.1" ,
112112 "d3" : " ^7.0.0" ,
113113 "diff" : " ^7.0.0" ,
Original file line number Diff line number Diff line change 4646 "@babel/core" : " 7.25.2" ,
4747 "@jridgewell/sourcemap-codec" : " ^1.4.14" ,
4848 "reflect-metadata" : " ^0.2.0" ,
49- "chokidar" : " ^3 .0.0" ,
49+ "chokidar" : " ^4 .0.0" ,
5050 "convert-source-map" : " ^1.5.1" ,
5151 "semver" : " ^7.0.0" ,
5252 "tslib" : " ^2.3.0" ,
Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ export function createPerformWatchHost<CbEmitRes extends ts.EmitResult = ts.Emit
8888 const watcher = chokidar . watch ( options . basePath , {
8989 // ignore .dotfiles, .js and .map files.
9090 // can't ignore other files as we e.g. want to recompile if an `.html` file changes as well.
91- ignored : / ( ( ^ [ \/ \\ ] ) \. .) | ( \. j s $ ) | ( \. m a p $ ) | ( \. m e t a d a t a \. j s o n | n o d e _ m o d u l e s ) / ,
91+ ignored : ( path ) =>
92+ / ( ( ^ [ \/ \\ ] ) \. .) | ( \. j s $ ) | ( \. m a p $ ) | ( \. m e t a d a t a \. j s o n | n o d e _ m o d u l e s ) / . test ( path ) ,
9293 ignoreInitial : true ,
9394 persistent : true ,
9495 } ) ;
You can’t perform that action at this time.
0 commit comments