Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
fix: performance issue on case-insensitive file systems #507
Browse files Browse the repository at this point in the history
  • Loading branch information
s-panferov committed Nov 1, 2017
1 parent 6e420c8 commit fc04d29
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/checker/runtime.ts
Expand Up @@ -329,7 +329,6 @@ function createChecker(receive: (cb: (msg: Req) => void) => void, send: (msg: Re
if (file.fileName !== fileName) {
if (caseInsensitive) {
file.fileName = fileName; // use most recent name for case-sensitive file systems
updated = true;
} else {
removeFile(file.fileName);
projectVersion++;
Expand Down

0 comments on commit fc04d29

Please sign in to comment.