We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7882bf4 commit 9b0c8b7Copy full SHA for 9b0c8b7
build/release/release.js
@@ -64,6 +64,9 @@ function cloneRepo() {
64
if ( exec( "npm install" ).code !== 0 ) {
65
abort( "Error installing dependencies." );
66
}
67
+ if ( exec( "npm install download.jqueryui.com" ).code !== 0 ) {
68
+ abort( "Error installing dependencies." );
69
+ }
70
echo();
71
72
@@ -145,8 +148,7 @@ function buildRelease() {
145
148
146
149
147
150
echo( "Building release..." );
- // TODO: Build themes
- if ( exec( "grunt release" ).code !== 0 ) {
151
+ if ( exec( "grunt release_cdn" ).code !== 0 ) {
152
abort( "Error building release." );
153
154
0 commit comments