Home
last modified time | relevance | path

Searched refs:watchModifiedFiles (Results 1 – 3 of 3) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/fast_build/common/
Drollup-plugin-watch-change.ts69 const watchModifiedFiles: string[] = this.cache.get('watchModifiedFiles') || []; constant
71 if (shouldWriteChangedList(watchModifiedFiles, watchRemovedFiles)) {
73 getHotReloadFiles(watchModifiedFiles, watchRemovedFiles, hotReloadSupportFiles)));
75 incrementWatchFile(watchModifiedFiles, watchRemovedFiles);
/developtools/ace_ets2bundle/compiler/src/
Dutils.ts513 export function shouldWriteChangedList(watchModifiedFiles: string[],
516 projectConfig.changedFileList && (watchRemovedFiles.length + watchModifiedFiles.length)) {
518 if (!(watchModifiedFiles.length === 1 &&
519 watchModifiedFiles[0] === projectConfig.projectPath && !watchRemovedFiles.length)) {
547 export function getHotReloadFiles(watchModifiedFiles: string[],
551 allModifiedFiles = new Set([...allModifiedFiles, ...watchModifiedFiles
Dets_checker.ts937 export function incrementWatchFile(watchModifiedFiles: string[],
939 const changedFiles: string[] = [...watchModifiedFiles, ...watchRemovedFiles];