mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: Stop copying src/core.js to dist on release
File `src/core.js` has started erroneously being copied to `dist/` in gh-2981. Fixes gh-4489 Closes gh-4492 Ref gh-2979 Ref gh-2981
This commit is contained in:
parent
1b74660f73
commit
9a4d980639
@ -3,13 +3,16 @@ var fs = require( "fs" );
|
|||||||
module.exports = function( Release ) {
|
module.exports = function( Release ) {
|
||||||
|
|
||||||
var
|
var
|
||||||
files = [
|
distFiles = [
|
||||||
"dist/jquery.js",
|
"dist/jquery.js",
|
||||||
"dist/jquery.min.js",
|
"dist/jquery.min.js",
|
||||||
"dist/jquery.min.map",
|
"dist/jquery.min.map",
|
||||||
"dist/jquery.slim.js",
|
"dist/jquery.slim.js",
|
||||||
"dist/jquery.slim.min.js",
|
"dist/jquery.slim.min.js",
|
||||||
"dist/jquery.slim.min.map",
|
"dist/jquery.slim.min.map"
|
||||||
|
],
|
||||||
|
filesToCommit = [
|
||||||
|
...distFiles,
|
||||||
"src/core.js"
|
"src/core.js"
|
||||||
],
|
],
|
||||||
cdn = require( "./release/cdn" ),
|
cdn = require( "./release/cdn" ),
|
||||||
@ -46,7 +49,7 @@ module.exports = function( Release ) {
|
|||||||
);
|
);
|
||||||
cdn.makeReleaseCopies( Release );
|
cdn.makeReleaseCopies( Release );
|
||||||
Release._setSrcVersion();
|
Release._setSrcVersion();
|
||||||
callback( files );
|
callback( filesToCommit );
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -67,7 +70,7 @@ module.exports = function( Release ) {
|
|||||||
*/
|
*/
|
||||||
dist: function( callback ) {
|
dist: function( callback ) {
|
||||||
cdn.makeArchives( Release, function() {
|
cdn.makeArchives( Release, function() {
|
||||||
dist( Release, files, callback );
|
dist( Release, distFiles, callback );
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
Loading…
Reference in New Issue
Block a user