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 811236b commit 57faa1bCopy full SHA for 57faa1b
src/WebCompiler/Dependencies/SassDependencyResolver.cs
@@ -29,7 +29,8 @@ public override void UpdateFileDependencies(string path)
29
{
30
if (this.Dependencies != null)
31
32
- path = path.ToLowerInvariant();
+ FileInfo info = new FileInfo(path);
33
+ path = info.FullName.ToLowerInvariant();
34
35
if (!Dependencies.ContainsKey(path))
36
Dependencies[path] = new Dependencies();
@@ -46,7 +47,6 @@ public override void UpdateFileDependencies(string path)
46
47
}
48
49
- FileInfo info = new FileInfo(path);
50
string content = File.ReadAllText(info.FullName);
51
52
//match both <@import "myFile.scss";> and <@import url("myFile.scss");> syntax
0 commit comments