https://github.com/jquery/jquery/commit/
763ade6dda092709b36d97491951bcae415d91d1#diff-ba51b2c9ce2527b1f191cb2c210748a4f18cccc38893f7ffe1597fb1d23ce027L72
The above change did not work because makeArchives was
not made to return a Promise
* Publish to distribution repo and npm
* @param {Function} callback
*/
- dist: async callback => {
- await cdn.makeArchives( Release );
- dist( Release, distFiles, callback );
+ dist: function( callback ) {
+ cdn.makeArchives( Release, function() {
+ dist( Release, distFiles, callback );
+ } );
}
} );
};