]> source.dussan.org Git - jquery.git/commitdiff
Fix #13983. Switch to //# for sourcemaps.
authorDave Methvin <dave.methvin@gmail.com>
Tue, 2 Jul 2013 13:48:40 +0000 (09:48 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Tue, 2 Jul 2013 13:48:40 +0000 (09:48 -0400)
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
build/release.js

index 952515b46f05f5e985fe3324f7cd5fc965a08145..c170821040c9a50b2e3a715a1698039e8b77eda4 100644 (file)
@@ -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"
                                }
                        }
index 886387995c6b76e970c220c0a32cb1b148ab74cf..6ec38777b882df4f0ba00d1e958a9e080a8ab844 100644 (file)
@@ -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 );