Searched refs:watchRemovedFiles (Results 1 – 3 of 3) sorted by relevance
70 const watchRemovedFiles: string[] = this.cache.get('watchRemovedFiles') || []; constant71 if (shouldWriteChangedList(watchModifiedFiles, watchRemovedFiles)) {73 getHotReloadFiles(watchModifiedFiles, watchRemovedFiles, hotReloadSupportFiles)));75 incrementWatchFile(watchModifiedFiles, watchRemovedFiles);
514 watchRemovedFiles: string[]): boolean {516 projectConfig.changedFileList && (watchRemovedFiles.length + watchModifiedFiles.length)) {519 watchModifiedFiles[0] === projectConfig.projectPath && !watchRemovedFiles.length)) {548 watchRemovedFiles: string[], hotReloadSupportFiles: Set<string>): FilesObj {550 watchRemovedFiles = watchRemovedFiles.map(file => path.relative(projectConfig.projectPath, file));555 .filter(file => !watchRemovedFiles.includes(file)));558 removedFiles: [...watchRemovedFiles]
938 watchRemovedFiles: string[]): void {939 const changedFiles: string[] = [...watchModifiedFiles, ...watchRemovedFiles];