mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix #13983. Switch to //# for sourcemaps.
Normally we'd avoid doing this on a patch release, but Chrome Canary is spewing deprecation warnings already and that's generating bug tickets.
This commit is contained in:
parent
5f1aa2354a
commit
d53ddc90c1
@ -115,7 +115,7 @@ module.exports = function( grunt ) {
|
||||
"/*! jQuery v<%= pkg.version %> | " +
|
||||
"(c) 2005, 2013 jQuery Foundation, Inc. | " +
|
||||
"jquery.org/license\n" +
|
||||
"//@ sourceMappingURL=jquery.min.map\n" +
|
||||
"//# sourceMappingURL=jquery.min.map\n" +
|
||||
"*/\n"
|
||||
}
|
||||
}
|
||||
|
@ -167,10 +167,10 @@ function makeReleaseCopies( next ) {
|
||||
} else if ( /\.min\.js$/.test( releaseFile ) ) {
|
||||
// Minified files point back to the corresponding map;
|
||||
// again assume one big happy directory.
|
||||
// "//@ sourceMappingURL=jquery.min.map"
|
||||
// "//# sourceMappingURL=jquery.min.map"
|
||||
text = fs.readFileSync( builtFile, "utf8" )
|
||||
.replace( /\/\/@ sourceMappingURL=\S+/,
|
||||
"//@ sourceMappingURL=" + unpathedFile.replace( /\.js$/, ".map" ) );
|
||||
.replace( /\/\/# sourceMappingURL=\S+/,
|
||||
"//# sourceMappingURL=" + unpathedFile.replace( /\.js$/, ".map" ) );
|
||||
fs.writeFileSync( releaseFile, text );
|
||||
} else if ( builtFile !== releaseFile ) {
|
||||
copy( builtFile, releaseFile );
|
||||
|
Loading…
Reference in New Issue
Block a user