forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
53 lines (46 loc) · 874 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
49
50
51
52
53
var rimraf = require( "rimraf" );
module.exports = function( grunt ) {
grunt.loadNpmTasks( "grunt-check-modules" );
grunt.loadNpmTasks( "grunt-jquery-content" );
grunt.initConfig({
xmllint: {
all: [
"entries/**",
"includes/**",
"categories.xml",
"entries2html.xsl",
"notes.xsl"
]
},
"build-pages": {
all: "pages/**"
},
"build-xml-entries": {
all: "entries/**"
},
"build-resources": {
all: "resources/**"
},
wordpress: (function() {
var config = require( "./config" );
config.dir = "dist/wordpress";
return config;
})()
});
grunt.registerTask( "clean", function() {
rimraf.sync( "dist" );
});
grunt.registerTask( "build", [
"build-pages",
"build-resources",
"build-xml-entries",
"build-xml-categories",
"build-xml-full"
]);
grunt.registerTask( "build-wordpress", [
"check-modules",
"xmllint",
"clean",
"build"
]);
};