mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Fix #13983. Switch to //# for sourcemap directives. (cherry-picked from dfaee326e6
)
This commit is contained in:
parent
e4cfe8242c
commit
9035cab8c8
@ -83,12 +83,10 @@ module.exports = function( grunt ) {
|
||||
"dist/jquery.pre-min.js": [ "dist/jquery.js" ]
|
||||
},
|
||||
options: {
|
||||
banner: "\n\n\n\n\n\n\n\n\n\n" + // banner line size must be preserved
|
||||
banner: "\n\n\n\n\n\n\n\n\n\n\n\n" + // banner line size must be preserved
|
||||
"/*! jQuery v<%= pkg.version %> | " +
|
||||
"(c) 2005, 2013 jQuery Foundation, Inc. | " +
|
||||
"jquery.org/license\n" +
|
||||
"//@ sourceMappingURL=jquery.min.map\n" +
|
||||
"*/\n"
|
||||
"jquery.org/license */\n"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -57,18 +57,6 @@ module.exports = function( grunt ) {
|
||||
if ( /\.map$/.test( filename ) ) {
|
||||
text = text.replace( /"dist\//g, "\"" );
|
||||
fs.writeFileSync( filename, text, "utf-8" );
|
||||
|
||||
// Use our hard-coded sourceMap directive instead of the autogenerated one (#13274; #13776)
|
||||
} else if ( /\.min\.js$/.test( filename ) ) {
|
||||
i = 0;
|
||||
text = text.replace( /(?:\/\*|)\n?\/\/@\s*sourceMappingURL=.*(\n\*\/|)/g,
|
||||
function( match ) {
|
||||
if ( i++ ) {
|
||||
return "";
|
||||
}
|
||||
return match;
|
||||
});
|
||||
fs.writeFileSync( filename, text, "utf-8" );
|
||||
}
|
||||
|
||||
// Optionally copy dist files to other locations
|
||||
|
@ -38,12 +38,8 @@ module.exports = function( grunt ) {
|
||||
// Rename the file to a temporary name.
|
||||
fs.renameSync( mapFileName, mapping.dest);
|
||||
grunt.file.write( mapFileName, grunt.file.read( mapping.dest )
|
||||
// The uglify task erroneously prepends dist/ to file names.
|
||||
.replace( /"dist\//g, "\"" )
|
||||
// Refer to the source jquery.js, not the temporary jquery.pre-min.js.
|
||||
.replace( /\.pre-min\./g, "." )
|
||||
// There's already a pragma at the beginning of the file, remove the one at the end.
|
||||
.replace( /\/\/@ sourceMappingURL=jquery\.min\.map$/g, "" ));
|
||||
.replace( /\.pre-min\./g, "." ));
|
||||
});
|
||||
|
||||
// Remove temporary files.
|
||||
|
Loading…
Reference in New Issue
Block a user