mirror of
https://github.com/jquery/jquery.git
synced 2026-01-23 22:48:17 -05:00
Fix #12886. Fix map file reference in .min.js file.
Cherry picked from e348b40608 .
This commit is contained in:
@@ -432,11 +432,14 @@ module.exports = function( grunt ) {
|
||||
nonascii = true;
|
||||
}
|
||||
|
||||
// Modify map so that it points to files in the same folder;
|
||||
// Modify map/min so that it points to files in the same folder;
|
||||
// see https://github.com/mishoo/UglifyJS2/issues/47
|
||||
if ( /\.map$/.test( filename ) ) {
|
||||
text = text.replace( /"dist\//g, "\"" );
|
||||
fs.writeFileSync( filename, text, "utf-8" );
|
||||
} else if ( /\.min\.js$/.test( filename ) ) {
|
||||
text = text.replace( /sourceMappingURL=dist\//, "sourceMappingURL=" );
|
||||
fs.writeFileSync( filename, text, "utf-8" );
|
||||
}
|
||||
|
||||
// Optionally copy dist files to other locations
|
||||
|
||||
Reference in New Issue
Block a user