Skip to content

Commit b2a8bbb

Browse files
committed
Build: Upgrade to Grunt 0.4.5
* Upgrade to grunt-check-modules 0.2.0 * Upgrade to grunt-jquery-content 1.0.0
1 parent f5b8ae5 commit b2a8bbb

File tree

3 files changed

+57
-53
lines changed

3 files changed

+57
-53
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
node_modules
2-
dist
3-
config.json
1+
/dist/
2+
/node_modules/
3+
config.js*

grunt.js Gruntfile.js

+51-46
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
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" );
25

36
module.exports = function( grunt ) {
47

58
grunt.loadNpmTasks( "grunt-check-modules" );
69
grunt.loadNpmTasks( "grunt-jquery-content" );
7-
grunt.loadNpmTasks( "grunt-wordpress" );
810

911
grunt.initConfig({
1012
"build-pages": {
11-
all: grunt.file.expandFiles( "page/**" )
13+
all: "page/**"
1214
},
1315
"build-resources": {
14-
all: grunt.file.expandFiles( "resources/**" )
16+
all: "resources/**"
1517
},
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+
})()
1923
});
2024

2125
grunt.registerTask( "clean", function() {
@@ -28,52 +32,52 @@ grunt.registerTask( "build-download", function() {
2832
host: "http://download.jqueryui.com",
2933
env: "production"
3034
}),
31-
resources = grunt.file.expandFiles( dir + "/app/dist/**" ),
3235
download = frontend.download,
33-
themeroller = frontend.themeroller;
36+
themeroller = frontend.themeroller,
37+
wordpressDir = grunt.config( "wordpress.dir" ),
38+
resourceCount = 0;
3439

35-
grunt.file.write( grunt.config( "wordpress.dir" ) + "/posts/page/download.html",
40+
grunt.file.write( wordpressDir + "/posts/page/download.html",
3641
"<script>" + JSON.stringify({
3742
title: "Download Builder",
3843
pageTemplate: "page-fullwidth.php"
3944
}) + "</script>\n" + download.index() );
4045

41-
grunt.file.write( grunt.config( "wordpress.dir" ) + "/posts/page/themeroller.html",
46+
grunt.file.write( wordpressDir + "/posts/page/themeroller.html",
4247
"<script>" + JSON.stringify({
4348
title: "ThemeRoller",
4449
pageTemplate: "page-fullwidth.php"
4550
}) + "</script>\n" + themeroller.index() );
4651

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++;
4956
});
5057

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." );
5260
}
61+
5362
var path = require( "path" ),
5463
dir = path.dirname( require.resolve( "download.jqueryui.com" ) ),
5564
done = this.async();
5665

5766
if ( grunt.option( "noprepare" ) ) {
5867
writeFiles();
59-
done();
60-
return;
68+
return done();
6169
}
6270

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
6472
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 ) {
7276
if ( error ) {
73-
grunt.log.error( error, stringResult );
74-
done( false );
75-
return;
77+
grunt.log.error( stderr );
78+
return done( error );
7679
}
80+
7781
writeFiles();
7882
done();
7983
});
@@ -138,17 +142,14 @@ grunt.registerTask( "build-demos", function() {
138142
// Create syntax highlighted version
139143
$ = cheerio.load( "<pre><code data-linenum='true'></code></pre>" );
140144
$( "code" ).text( content );
141-
grunt.file.write( highlightDest,
142-
grunt.helper( "syntax-highlight", { content: $.html() } ) );
145+
grunt.file.write( highlightDest, jqueryContent.syntaxHighlight( $.html() ) );
143146
} else {
144147
grunt.file.write( dest, content );
145148
}
146149
} else {
147150
grunt.file.copy( abspath, dest );
148151
}
149-
// TODO: Remove subdir parameter when upgrading to grunt 0.4.1+
150-
// https://github.com/gruntjs/grunt/pull/722
151-
}, "" );
152+
});
152153

153154
for ( subdir in demoList ) {
154155
demoList[ subdir ].sort( sortByTitle );
@@ -158,7 +159,7 @@ grunt.registerTask( "build-demos", function() {
158159
grunt.file.write( targetDir + "/demo-list.json", JSON.stringify( demoList, null, "\t" ) );
159160

160161
// Copy externals into /resources/demos/external
161-
grunt.file.expandFiles( externalDir + "/**" ).forEach(function( filename ) {
162+
grunt.file.expand( { filter: "isFile" }, externalDir + "/**" ).forEach(function( filename ) {
162163
grunt.file.copy( filename, targetDir + "/external/" + filename.replace( externalDir, "" ) );
163164
});
164165

@@ -203,30 +204,34 @@ grunt.registerTask( "copy-taxonomies", function() {
203204
});
204205

205206
grunt.registerTask( "create-quickdownload", function() {
207+
206208
// We hijack the jquery-ui checkout from download.jqueryui.com
207209
this.requires( "build-download" );
208210

209211
var done = this.async(),
210212
path = require( "path" );
211213

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 ) {
219217
if ( error ) {
220-
grunt.log.error( error, stringResult );
221-
done( false );
222-
return;
218+
grunt.log.error( stderr );
219+
return done( error );
223220
}
224-
grunt.log.write( result.stdout );
221+
222+
grunt.log.write( stdout );
225223
done();
226224
});
227225
});
228226

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" ] );
231236

232237
};

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
}
2121
],
2222
"dependencies": {
23-
"grunt": "0.3.17",
24-
"grunt-wordpress": "1.2.1",
25-
"grunt-jquery-content": "0.13.0",
26-
"grunt-check-modules": "0.1.0",
23+
"grunt": "0.4.5",
24+
"grunt-check-modules": "0.2.0",
25+
"grunt-jquery-content": "1.0.0",
2726
"download.jqueryui.com": "2.0.17",
2827
"cheerio": "0.12.4",
2928
"rimraf": "2.2.8"

0 commit comments

Comments
 (0)