]> source.dussan.org Git - jquery.git/commitdiff
Build: Stop copying src/core.js to dist on release
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Fri, 4 Oct 2019 14:13:14 +0000 (16:13 +0200)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Fri, 4 Oct 2019 14:13:58 +0000 (16:13 +0200)
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

(cherry picked from commit 9a4d980639dd804ad320685a25b8ff4572e3f595)

build/release.js

index de6ab0c060eb5966c2ba42df23a701459ad93d27..a3b5fc2ba0eeb698fe5ab551504348d114163215 100644 (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" ),
@@ -55,7 +58,7 @@ module.exports = function( Release ) {
                        );
                        cdn.makeReleaseCopies( Release );
                        Release._setSrcVersion();
-                       callback( files );
+                       callback( filesToCommit );
                },
 
                /**
@@ -76,7 +79,7 @@ module.exports = function( Release ) {
                 */
                dist: function( callback ) {
                        cdn.makeArchives( Release, function() {
-                               dist( Release, files, callback );
+                               dist( Release, distFiles, callback );
                        } );
                }
        } );