diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-03-18 11:48:21 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2014-03-21 12:33:10 -0400 |
commit | 5265cdac3d84b7bb4f8013ef10adaa5a9968fb1c (patch) | |
tree | 5144d6df4b306bf0d2a426ff0115485b4927a8ee /build | |
parent | 2c2c93c7cbfafdb06a27dafee88fc67b265c8e32 (diff) | |
download | jquery-5265cdac3d84b7bb4f8013ef10adaa5a9968fb1c.tar.gz jquery-5265cdac3d84b7bb4f8013ef10adaa5a9968fb1c.zip |
Build: Update release script for new jquery-release API
Closes gh-1544
Diffstat (limited to 'build')
-rw-r--r-- | build/release.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/build/release.js b/build/release.js index e7da79988..529137da7 100644 --- a/build/release.js +++ b/build/release.js @@ -4,10 +4,6 @@ module.exports = function( Release ) { fs = require( "fs" ), shell = require( "shelljs" ), - // Windows needs the .cmd version but will find the non-.cmd - // On Windows, ensure the HOME environment variable is set - gruntCmd = process.platform === "win32" ? "grunt.cmd" : "grunt", - devFile = "dist/jquery.js", minFile = "dist/jquery.min.js", mapFile = "dist/jquery.min.map", @@ -127,9 +123,7 @@ module.exports = function( Release ) { * @param {Function} callback */ generateArtifacts: function( callback ) { - if ( Release.exec( gruntCmd ).code !== 0 ) { - Release.abort("Grunt command failed"); - } + Release.exec( "grunt", "Grunt command failed" ); makeReleaseCopies(); callback([ "dist/jquery.js", "dist/jquery.min.js", "dist/jquery.min.map" ]); }, @@ -170,3 +164,8 @@ module.exports = function( Release ) { } }); }; + +module.exports.dependencies = [ + "archiver@0.5.2", + "shelljs@0.2.6" +]; |