File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,16 @@ var fs = require( "fs" );
3
3
module . exports = function ( Release ) {
4
4
5
5
var
6
- files = [
6
+ distFiles = [
7
7
"dist/jquery.js" ,
8
8
"dist/jquery.min.js" ,
9
9
"dist/jquery.min.map" ,
10
10
"dist/jquery.slim.js" ,
11
11
"dist/jquery.slim.min.js" ,
12
- "dist/jquery.slim.min.map" ,
12
+ "dist/jquery.slim.min.map"
13
+ ] ,
14
+ filesToCommit = [
15
+ ...distFiles ,
13
16
"src/core.js"
14
17
] ,
15
18
cdn = require ( "./release/cdn" ) ,
@@ -46,7 +49,7 @@ module.exports = function( Release ) {
46
49
) ;
47
50
cdn . makeReleaseCopies ( Release ) ;
48
51
Release . _setSrcVersion ( ) ;
49
- callback ( files ) ;
52
+ callback ( filesToCommit ) ;
50
53
} ,
51
54
52
55
/**
@@ -67,7 +70,7 @@ module.exports = function( Release ) {
67
70
*/
68
71
dist : function ( callback ) {
69
72
cdn . makeArchives ( Release , function ( ) {
70
- dist ( Release , files , callback ) ;
73
+ dist ( Release , distFiles , callback ) ;
71
74
} ) ;
72
75
}
73
76
} ) ;
You can’t perform that action at this time.
0 commit comments