Skip to content

Commit 48cc402

Browse files
authored
Build: replace CRLF with LF during minify
- SWC is not respecting the git setting and does not have an option to force LF. This fixes the build on Windows. Close gh-5305
1 parent 8be4c0e commit 48cc402

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/tasks/minify.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ module.exports = ( grunt ) => {
3434
}
3535
);
3636

37-
grunt.file.write( dest, code );
37+
// Can't seem to get SWC to not use CRLF on Windows, so replace them with LF.
38+
grunt.file.write( dest, code.replace( /\r\n/g, "\n" ) );
3839

3940
if ( sourceMapFilename ) {
4041

0 commit comments

Comments
 (0)