This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static string Run(string style, Func<ImportData, string> tryImport) | |
{ | |
var pathToTemp = Environment.GetEnvironmentVariable("TEMP", EnvironmentVariableTarget.Machine); | |
try | |
{ | |
var result = Scss.ConvertToCss(style, | |
new ScssOptions() | |
{ | |
TryImport = (string file, string path, out string scss, out string map) => | |
{ |