forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
48 lines (41 loc) · 870 Bytes
/
Gruntfile.js
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
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = function( grunt ) {
grunt.loadNpmTasks( "grunt-jquery-content" );
grunt.initConfig({
xmllint: {
all: [
"entries/**",
"includes/**",
"categories.xml",
"entries2html.xsl",
"notes.xsl"
]
},
"build-posts": {
page: "pages/**"
},
"build-xml-entries": {
all: "entries/**"
},
"build-resources": {
all: "resources/**"
},
wordpress: (function() {
// There's no config for CI, but we don't need one for basic testing
var config = {};
try {
config = require( "./config" );
} catch ( error ) {}
config.dir = "dist/wordpress";
return config;
})()
});
grunt.registerTask( "lint", [ "xmllint" ]);
grunt.registerTask( "build", [
"build-posts",
"build-resources",
"build-xml-entries",
"build-xml-categories",
"build-xml-full"
]);
grunt.registerTask( "deploy", [ "wordpress-deploy", "deploy-redirects" ] );
};