File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ module.exports = function( Release, complete ) {
1212 // These files are included with the distribution
1313 files = [
1414 "src" ,
15+ "external/sizzle" ,
1516 "LICENSE.txt" ,
1617 "AUTHORS.txt" ,
1718 "package.json"
@@ -55,9 +56,7 @@ module.exports = function( Release, complete ) {
5556 function copy ( ) {
5657
5758 // Copy dist files
58- var distFolder = Release . dir . dist + "/dist" ,
59- externalFolder = Release . dir . dist + "/external" ;
60-
59+ var distFolder = Release . dir . dist + "/dist" ;
6160 shell . mkdir ( "-p" , distFolder ) ;
6261 [
6362 "dist/jquery.js" ,
@@ -67,10 +66,6 @@ module.exports = function( Release, complete ) {
6766 shell . cp ( "-f" , Release . dir . repo + "/" + file , distFolder ) ;
6867 } ) ;
6968
70- // Copy Sizzle
71- shell . mkdir ( "-p" , externalFolder ) ;
72- shell . cp ( "-rf" , Release . dir . repo + "/external/sizzle" , externalFolder ) ;
73-
7469 // Copy other files
7570 files . forEach ( function ( file ) {
7671 shell . cp ( "-rf" , Release . dir . repo + "/" + file , Release . dir . dist ) ;
You can’t perform that action at this time.
0 commit comments