-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathgrunt.js
More file actions
36 lines (29 loc) · 946 Bytes
/
grunt.js
File metadata and controls
36 lines (29 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var rimraf = require( "rimraf" );
module.exports = function( grunt ) {
var entryFiles = grunt.file.expandFiles( "entries/*.xml" );
grunt.loadNpmTasks( "grunt-check-modules" );
grunt.loadNpmTasks( "grunt-jquery-content" );
grunt.loadNpmTasks( "grunt-wordpress" );
grunt.initConfig({
xmllint: {
all: [].concat( entryFiles, "categories.xml", "entries2html.xsl", "notes.xsl" )
},
"build-pages": {
all: grunt.file.expandFiles( "pages/**" )
},
"build-xml-entries": {
all: entryFiles
},
"build-resources": {
all: grunt.file.expandFiles( "resources/**" )
},
wordpress: grunt.utils._.extend({
dir: "dist/wordpress"
}, grunt.file.readJSON( "config.json" ) )
});
grunt.registerTask( "clean", function() {
rimraf.sync( "dist" );
});
grunt.registerTask( "build", "build-pages build-xml-entries build-xml-categories build-xml-full build-resources" );
grunt.registerTask( "build-wordpress", "check-modules clean xmllint build" );
};