1
- var rimraf = require ( "rimraf" ) ;
1
+ var exec = require ( "child_process" ) . exec ,
2
+ fs = require ( "fs" ) ,
3
+ rimraf = require ( "rimraf" ) ,
4
+ jqueryContent = require ( "grunt-jquery-content" ) ;
2
5
3
6
module . exports = function ( grunt ) {
4
7
5
8
grunt . loadNpmTasks ( "grunt-check-modules" ) ;
6
9
grunt . loadNpmTasks ( "grunt-jquery-content" ) ;
7
- grunt . loadNpmTasks ( "grunt-wordpress" ) ;
8
10
9
11
grunt . initConfig ( {
10
12
"build-pages" : {
11
- all : grunt . file . expandFiles ( "page/**" )
13
+ all : "page/**"
12
14
} ,
13
15
"build-resources" : {
14
- all : grunt . file . expandFiles ( "resources/**" )
16
+ all : "resources/**"
15
17
} ,
16
- wordpress : grunt . utils . _ . extend ( {
17
- dir : "dist/wordpress"
18
- } , grunt . file . readJSON ( "config.json" ) )
18
+ wordpress : ( function ( ) {
19
+ var config = require ( "./config" ) ;
20
+ config . dir = "dist/wordpress" ;
21
+ return config ;
22
+ } ) ( )
19
23
} ) ;
20
24
21
25
grunt . registerTask ( "clean" , function ( ) {
@@ -28,52 +32,52 @@ grunt.registerTask( "build-download", function() {
28
32
host : "http://download.jqueryui.com" ,
29
33
env : "production"
30
34
} ) ,
31
- resources = grunt . file . expandFiles ( dir + "/app/dist/**" ) ,
32
35
download = frontend . download ,
33
- themeroller = frontend . themeroller ;
36
+ themeroller = frontend . themeroller ,
37
+ wordpressDir = grunt . config ( "wordpress.dir" ) ,
38
+ resourceCount = 0 ;
34
39
35
- grunt . file . write ( grunt . config ( "wordpress.dir" ) + "/posts/page/download.html" ,
40
+ grunt . file . write ( wordpressDir + "/posts/page/download.html" ,
36
41
"<script>" + JSON . stringify ( {
37
42
title : "Download Builder" ,
38
43
pageTemplate : "page-fullwidth.php"
39
44
} ) + "</script>\n" + download . index ( ) ) ;
40
45
41
- grunt . file . write ( grunt . config ( "wordpress.dir" ) + "/posts/page/themeroller.html" ,
46
+ grunt . file . write ( wordpressDir + "/posts/page/themeroller.html" ,
42
47
"<script>" + JSON . stringify ( {
43
48
title : "ThemeRoller" ,
44
49
pageTemplate : "page-fullwidth.php"
45
50
} ) + "</script>\n" + themeroller . index ( ) ) ;
46
51
47
- resources . forEach ( function ( file ) {
48
- grunt . file . copy ( file , file . replace ( dir + "/app/dist" , grunt . config ( "wordpress.dir" ) + "/resources" ) ) ;
52
+ grunt . file . expand ( { filter : "isFile" } , dir + "/app/dist/**" ) . forEach ( function ( file ) {
53
+ grunt . file . copy ( file ,
54
+ file . replace ( dir + "/app/dist" , wordpressDir + "/resources" ) ) ;
55
+ resourceCount ++ ;
49
56
} ) ;
50
57
51
- grunt . log . writeln ( "Wrote download.html, themeroller.html and " + resources . length + " resources." ) ;
58
+ grunt . log . writeln ( "Wrote download.html, themeroller.html and " +
59
+ resourceCount + " resources." ) ;
52
60
}
61
+
53
62
var path = require ( "path" ) ,
54
63
dir = path . dirname ( require . resolve ( "download.jqueryui.com" ) ) ,
55
64
done = this . async ( ) ;
56
65
57
66
if ( grunt . option ( "noprepare" ) ) {
58
67
writeFiles ( ) ;
59
- done ( ) ;
60
- return ;
68
+ return done ( ) ;
61
69
}
62
70
63
- // at this point, the download builder repo is available, so let's initialize it
71
+ // At this point, the download builder repo is available, so let's initialize it
64
72
grunt . log . writeln ( "Initializing download module, might take a while..." ) ;
65
- grunt . utils . spawn ( {
66
- cmd : "grunt" ,
67
- args : [ "prepare" ] ,
68
- opts : {
69
- cwd : "node_modules/download.jqueryui.com"
70
- }
71
- } , function ( error , result , stringResult ) {
73
+ exec ( "grunt prepare" , {
74
+ cwd : "node_modules/download.jqueryui.com"
75
+ } , function ( error , stdout , strerr ) {
72
76
if ( error ) {
73
- grunt . log . error ( error , stringResult ) ;
74
- done ( false ) ;
75
- return ;
77
+ grunt . log . error ( stderr ) ;
78
+ return done ( error ) ;
76
79
}
80
+
77
81
writeFiles ( ) ;
78
82
done ( ) ;
79
83
} ) ;
@@ -138,17 +142,14 @@ grunt.registerTask( "build-demos", function() {
138
142
// Create syntax highlighted version
139
143
$ = cheerio . load ( "<pre><code data-linenum='true'></code></pre>" ) ;
140
144
$ ( "code" ) . text ( content ) ;
141
- grunt . file . write ( highlightDest ,
142
- grunt . helper ( "syntax-highlight" , { content : $ . html ( ) } ) ) ;
145
+ grunt . file . write ( highlightDest , jqueryContent . syntaxHighlight ( $ . html ( ) ) ) ;
143
146
} else {
144
147
grunt . file . write ( dest , content ) ;
145
148
}
146
149
} else {
147
150
grunt . file . copy ( abspath , dest ) ;
148
151
}
149
- // TODO: Remove subdir parameter when upgrading to grunt 0.4.1+
150
- // https://github.com/gruntjs/grunt/pull/722
151
- } , "" ) ;
152
+ } ) ;
152
153
153
154
for ( subdir in demoList ) {
154
155
demoList [ subdir ] . sort ( sortByTitle ) ;
@@ -158,7 +159,7 @@ grunt.registerTask( "build-demos", function() {
158
159
grunt . file . write ( targetDir + "/demo-list.json" , JSON . stringify ( demoList , null , "\t" ) ) ;
159
160
160
161
// Copy externals into /resources/demos/external
161
- grunt . file . expandFiles ( externalDir + "/**" ) . forEach ( function ( filename ) {
162
+ grunt . file . expand ( { filter : "isFile" } , externalDir + "/**" ) . forEach ( function ( filename ) {
162
163
grunt . file . copy ( filename , targetDir + "/external/" + filename . replace ( externalDir , "" ) ) ;
163
164
} ) ;
164
165
@@ -203,30 +204,34 @@ grunt.registerTask( "copy-taxonomies", function() {
203
204
} ) ;
204
205
205
206
grunt . registerTask ( "create-quickdownload" , function ( ) {
207
+
206
208
// We hijack the jquery-ui checkout from download.jqueryui.com
207
209
this . requires ( "build-download" ) ;
208
210
209
211
var done = this . async ( ) ,
210
212
path = require ( "path" ) ;
211
213
212
- grunt . utils . spawn ( {
213
- cmd : "grunt" ,
214
- args : [ "build-packages:" + path . resolve ( "resources/download" ) ] ,
215
- opts : {
216
- cwd : "node_modules/download.jqueryui.com"
217
- }
218
- } , function ( error , result , stringResult ) {
214
+ exec ( "grunt build-packages:" + path . resolve ( "resources/download" ) , {
215
+ cwd : "node_modules/download.jqueryui.com"
216
+ } , function ( error , stdout , stderr ) {
219
217
if ( error ) {
220
- grunt . log . error ( error , stringResult ) ;
221
- done ( false ) ;
222
- return ;
218
+ grunt . log . error ( stderr ) ;
219
+ return done ( error ) ;
223
220
}
224
- grunt . log . write ( result . stdout ) ;
221
+
222
+ grunt . log . write ( stdout ) ;
225
223
done ( ) ;
226
224
} ) ;
227
225
} ) ;
228
226
229
- grunt . registerTask ( "build" , "build-pages build-resources build-download build-demos copy-taxonomies" ) ;
230
- grunt . registerTask ( "build-wordpress" , "check-modules clean build" ) ;
227
+ grunt . registerTask ( "build" , [
228
+ "build-pages" ,
229
+ "build-resources" ,
230
+ "build-download" ,
231
+ "build-demos" ,
232
+ "copy-taxonomies"
233
+ ] ) ;
234
+
235
+ grunt . registerTask ( "build-wordpress" , [ "check-modules" , "clean" , "build" ] ) ;
231
236
232
237
} ;
0 commit comments