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:
Michał Gołębiowski-Owczarek 2019-10-04 16:13:14 +02:00 committed by GitHub
parent 1b74660f73
commit 9a4d980639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,16 @@ var fs = require( "fs" );
module.exports = function( Release ) {
var
files = [
distFiles = [
"dist/jquery.js",
"dist/jquery.min.js",
"dist/jquery.min.map",
"dist/jquery.slim.js",
"dist/jquery.slim.min.js",
"dist/jquery.slim.min.map",
"dist/jquery.slim.min.map"
],
filesToCommit = [
...distFiles,
"src/core.js"
],
cdn = require( "./release/cdn" ),
@ -46,7 +49,7 @@ module.exports = function( Release ) {
);
cdn.makeReleaseCopies( Release );
Release._setSrcVersion();
callback( files );
callback( filesToCommit );
},
/**
@ -67,7 +70,7 @@ module.exports = function( Release ) {
*/
dist: function( callback ) {
cdn.makeArchives( Release, function() {
dist( Release, files, callback );
dist( Release, distFiles, callback );
} );
}
} );