diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-10-04 16:13:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 16:13:14 +0200 |
commit | 9a4d980639dd804ad320685a25b8ff4572e3f595 (patch) | |
tree | 3568e14469a727ff1f6a2f4bcf609ade5e0ab4f0 /build | |
parent | 1b74660f730d34bf728094c33080ff406427f41e (diff) | |
download | jquery-9a4d980639dd804ad320685a25b8ff4572e3f595.tar.gz jquery-9a4d980639dd804ad320685a25b8ff4572e3f595.zip |
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
Diffstat (limited to 'build')
-rw-r--r-- | build/release.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/build/release.js b/build/release.js index bb7b13103..f666bf116 100644 --- a/build/release.js +++ b/build/release.js @@ -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 ); } ); } } ); |