From d53ddc90c1f119fb9148a553443ef3fbc3f3cc99 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 2 Jul 2013 09:48:40 -0400 Subject: [PATCH] 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. --- Gruntfile.js | 2 +- build/release.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 952515b46..c17082104 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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" } } diff --git a/build/release.js b/build/release.js index 886387995..6ec38777b 100644 --- a/build/release.js +++ b/build/release.js @@ -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 ); -- 2.39.5