Showing with 5 additions and 5 deletions.
  1. +1 −1 Gruntfile.js
  2. +1 −1 build/release-notes.js
  3. +3 −3 build/release.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"
}
}
@@ -40,7 +40,7 @@ http.request({
console.log("</ul>");
}
cur = cat;
console.log( "<h2>" + cat.charAt(0).toUpperCase() + cat.slice(1) + "</h2>" );
console.log( "<h3>" + cat.charAt(0).toUpperCase() + cat.slice(1) + "</h3>" );
console.log("<ul>");
}

@@ -166,10 +166,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 );