We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71542f commit 4964facCopy full SHA for 4964fac
src/WebCompiler/Dependencies/SassDependencyResolver.cs
@@ -80,8 +80,8 @@ public override void UpdateFileDependencies(string path)
80
if (!File.Exists(cleanPath))
81
continue;
82
83
- dependencyFilePath = cleanPath;
84
- }
+ dependencyFilePath = cleanPath.ToLowerInvariant();
+ }
85
86
if (!Dependencies[path].DependentOn.Contains(dependencyFilePath))
87
Dependencies[path].DependentOn.Add(dependencyFilePath);
0 commit comments