File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,9 @@ private static string ConstructArguments(Config config)
134
134
if ( ! string . IsNullOrEmpty ( options . SourceMapRoot ) )
135
135
arguments += " --source-map-root=" + options . SourceMapRoot ;
136
136
137
+ if ( ! string . IsNullOrEmpty ( options . LineFeed ) )
138
+ arguments += " --linefeed=" + options . LineFeed ;
139
+
137
140
return arguments ;
138
141
}
139
142
}
Original file line number Diff line number Diff line change @@ -97,5 +97,13 @@ protected override string CompilerFileName
97
97
/// </summary>
98
98
[ JsonProperty ( "sourceMapRoot" ) ]
99
99
public string SourceMapRoot { get ; set ; } = string . Empty ;
100
+
101
+ /// <summary>
102
+ /// Linefeed style (cr | crlf | lf | lfcr)
103
+ /// </summary>
104
+ [ JsonProperty ( "lineFeed" ) ]
105
+ public string LineFeed { get ; set ; } = string . Empty ;
106
+
107
+
100
108
}
101
109
}
You can’t perform that action at this time.
0 commit comments