diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-21 18:26:56 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-03-12 11:00:32 +0100 |
commit | f87b4e0f4ac2342dff260c32aa8d08148e76f7a4 (patch) | |
tree | 1031693b9a273aba07d4822ab88a32cb6f41f4a5 /build/release | |
parent | 4d67f4f34908a50ef88f95df4103ee001b777e45 (diff) | |
download | jquery-ui-f87b4e0f4ac2342dff260c32aa8d08148e76f7a4.tar.gz jquery-ui-f87b4e0f4ac2342dff260c32aa8d08148e76f7a4.zip |
Build: Migrate to grunt 0.4. Rename to Gruntfile, upgrade to newer grunt-css and grunt-html, update custom tasks. Drop qunit-junit plugin, not worth the trouble. Update release script to run grunt-prepare after npm-install.
Diffstat (limited to 'build/release')
-rw-r--r-- | build/release/release.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/release/release.js b/build/release/release.js index 2eab5283f..6a387494b 100644 --- a/build/release/release.js +++ b/build/release/release.js @@ -72,6 +72,9 @@ function cloneRepo() { if ( exec( "npm install download.jqueryui.com" ).code !== 0 ) { abort( "Error installing dependencies." ); } + if ( exec( "cd node_modules/download.jqueryui.com && grunt prepare" ).code !== 0 ) { + abort( "Error installing dependencies." ); + } } echo(); } |