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 afc5417 commit cfa4d5bCopy full SHA for cfa4d5b
MiniWebCompiler/ViewModels/ProjectFile.cs
@@ -499,6 +499,7 @@ await ExecAsync(
499
break;
500
}
501
502
+ LastLog += Environment.NewLine + "● Adding IIFE parameters and arguments" + Environment.NewLine;
503
File.WriteAllLines(Path.Combine(fileDir, bundleFileName), lines);
504
505
@@ -662,6 +663,8 @@ private void PostprocessMapFile(string mapFileName)
662
663
if (!(JSON.Parse(json) is Dictionary<string, object> dict))
664
return; // Unexpected JSON structure
665
666
+ LastLog += Environment.NewLine + "● Modifying source map: relative paths, remove sources" + Environment.NewLine;
667
+
668
// Convert absolute paths to relative paths
669
if (dict["sources"] is List<object> sources)
670
{
0 commit comments