diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2013-01-05 13:11:01 -0500 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-01-06 09:55:51 -0500 |
commit | b760d798d35d4c945c9c5240bb8cb4719330ad1f (patch) | |
tree | 21b2991da815d75354f240ba67d964c042ca8591 /Gruntfile.js | |
parent | c0241a47e270cd0e0ac2b2a0fdefc5a3a15b5ae6 (diff) | |
download | jquery-b760d798d35d4c945c9c5240bb8cb4719330ad1f.tar.gz jquery-b760d798d35d4c945c9c5240bb8cb4719330ad1f.zip |
Fix #12471. Use consistent line endings in jquery.js
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 12f2177f2..7a0c33c67 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -189,8 +189,8 @@ module.exports = function( grunt ) { grunt.verbose.write("Injected sizzle-jquery.js into sizzle.js"); - // Write concatenated source to file - grunt.file.write( name, compiled ); + // Write concatenated source to file, and ensure newline-only termination + grunt.file.write( name, compiled.replace( /\x0d\x0a/g, "\x0a" ) ); // Fail task if errors were logged. if ( this.errorCount ) { @@ -409,8 +409,17 @@ module.exports = function( grunt ) { nonascii = false; distpaths.forEach(function( filename ) { - var text = fs.readFileSync( filename, "utf8" ), - i, c; + var i, c, + text = fs.readFileSync( filename, "utf8" ); + + // Ensure files use only \n for line endings, not \r\n + if ( /\x0d\x0a/.test( text ) ) { + grunt.log.writeln( filename + ": Incorrect line endings (\\r\\n)" ); + nonascii = true; + return; + } + + // Ensure only ASCII chars so script tags don't need a charset attribute if ( text.length !== Buffer.byteLength( text, "utf8" ) ) { grunt.log.writeln( filename + ": Non-ASCII characters detected:" ); for ( i = 0; i < text.length; i++ ) { @@ -418,10 +427,10 @@ module.exports = function( grunt ) { if ( c > 127 ) { grunt.log.writeln( "- position " + i + ": " + c ); grunt.log.writeln( "-- " + text.substring( i - 20, i + 20 ) ); - nonascii = true; break; } } + nonascii = true; } // Modify map so that it points to files in the same folder; |