mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
parent
2df1aad6a1
commit
984f77a930
@ -55,12 +55,6 @@ module.exports = function( grunt ) {
|
||||
// Remove EXPOSE lines from Sizzle
|
||||
.replace( /\/\/\s*EXPOSE[\w\W]*\/\/\s*EXPOSE/, "return Sizzle;" );
|
||||
|
||||
// AMD Name
|
||||
} else if ( (amdName = grunt.option( "amd" )) != null && /^exports\/amd$/.test( name ) ) {
|
||||
// Remove the comma for anonymous defines
|
||||
contents = contents
|
||||
.replace( /(\s*)"jquery"(\,\s*)/, amdName ? "$1\"" + amdName + "\"$2" : "" );
|
||||
|
||||
} else {
|
||||
|
||||
// Ignore jQuery's exports (the only necessary one)
|
||||
@ -87,6 +81,18 @@ module.exports = function( grunt ) {
|
||||
contents = contents
|
||||
.replace( /define\(\[[^\]]+\]\)[\W\n]+$/, "" );
|
||||
}
|
||||
// AMD Name
|
||||
if ( (amdName = grunt.option( "amd" )) != null && /^exports\/amd$/.test( name ) ) {
|
||||
if (amdName) {
|
||||
grunt.log.writeln( "Naming jQuery with AMD name: " + amdName );
|
||||
} else {
|
||||
grunt.log.writeln( "AMD name now anonymous" );
|
||||
}
|
||||
// Remove the comma for anonymous defines
|
||||
contents = contents
|
||||
.replace( /(\s*)"jquery"(\,\s*)/, amdName ? "$1\"" + amdName + "\"$2" : "" );
|
||||
|
||||
}
|
||||
return contents;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user