File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ module.exports = function( Release, complete ) {
1212 // These files are included with the distribution
1313 files = [
1414 "src" ,
15- "external/sizzle" ,
1615 "LICENSE.txt" ,
1716 "AUTHORS.txt" ,
1817 "package.json"
@@ -56,7 +55,9 @@ module.exports = function( Release, complete ) {
5655 function copy ( ) {
5756
5857 // Copy dist files
59- var distFolder = Release . dir . dist + "/dist" ;
58+ var distFolder = Release . dir . dist + "/dist" ,
59+ externalFolder = Release . dir . dist + "/external" ;
60+
6061 shell . mkdir ( "-p" , distFolder ) ;
6162 [
6263 "dist/jquery.js" ,
@@ -66,6 +67,10 @@ module.exports = function( Release, complete ) {
6667 shell . cp ( "-f" , Release . dir . repo + "/" + file , distFolder ) ;
6768 } ) ;
6869
70+ // Copy Sizzle
71+ shell . mkdir ( "-p" , externalFolder ) ;
72+ shell . cp ( "-rf" , Release . dir . repo + "/external/sizzle" , externalFolder ) ;
73+
6974 // Copy other files
7075 files . forEach ( function ( file ) {
7176 shell . cp ( "-rf" , Release . dir . repo + "/" + file , Release . dir . dist ) ;
You can’t perform that action at this time.
0 commit comments