Showing with 20 additions and 3 deletions.
  1. +14 −0 AUTHORS.txt
  2. +6 −3 build/release/dist.js
@@ -259,3 +259,17 @@ Chris Rebert <github@rebertia.com>
Gabriel Schulhof <gabriel.schulhof@intel.com>
Gilad Peleg <giladp007@gmail.com>
Martin Naumann <martin@geekonaut.de>
Marek Lewandowski <m.lewandowski@cksource.com>
Bruno Pérel <brunoperel@gmail.com>
Reed Loden <reed@reedloden.com>
Daniel Nill <daniellnill@gmail.com>
Yongwoo Jeon <yongwoo.jeon@navercorp.com>
Sean Henderson <seanh.za@gmail.com>
Richard Kraaijenhagen <stdin+git@riichard.com>
Connor Atherton <c.liam.atherton@gmail.com>
Gary Ye <garysye@gmail.com>
Christian Grete <webmaster@christiangrete.com>
Liza Ramo <liza.h.ramo@gmail.com>
Julian Alexander Murillo <julian.alexander.murillo@gmail.com>
Joelle Fleurantin <joasqueeniebee@gmail.com>
Jun Sun <klsforever@gmail.com>
@@ -4,7 +4,10 @@ module.exports = function( Release, complete ) {
fs = require( "fs" ),
shell = require( "shelljs" ),
pkg = require( Release.dir.repo + "/package.json" ),
distRemote = Release.remote.replace( "jquery.git", "jquery-dist.git" ),
distRemote = Release.remote

// For local and github dists
.replace( /jquery(\.git|$)/, "jquery-dist$1" ),

// These files are included with the distribution
files = [
@@ -59,12 +62,12 @@ module.exports = function( Release, complete ) {
"dist/jquery.min.js",
"dist/jquery.min.map"
].forEach( function( file ) {
shell.cp( Release.dir.repo + "/" + file, distFolder );
shell.cp( "-f", Release.dir.repo + "/" + file, distFolder );
} );

// Copy other files
files.forEach( function( file ) {
shell.cp( "-r", Release.dir.repo + "/" + file, Release.dir.dist );
shell.cp( "-rf", Release.dir.repo + "/" + file, Release.dir.dist );
} );

// Write generated bower file