-
Notifications
You must be signed in to change notification settings - Fork 26
/
Gruntfile.js
110 lines (100 loc) · 2.46 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = function (grunt) {
grunt.initConfig({
exec: {
clean: {
cmd: function () {
return "git clean -x -f && rm -rf articles/book-pdf";
}
},
preprocess: {
cwd: "./articles",
cmd: function () {
var command = "review-preproc";
var files = [
"sample"
];
var exec = command + " -r --tabwidth=2 " + files.map(function(file){ return file + ".re"; }).join(" ");
console.log(exec);
return exec;
}
},
compile2text: {
cwd: "./articles",
cmd: function () {
return "review-compile --all --target=text --subdirmode";
}
},
compile2html: {
cwd: "./articles",
cmd: function () {
return "review-compile --all --target=html --subdirmode";
}
},
compile2latex: {
cwd: "./articles",
cmd: function () {
return "review-compile --all --target=latex --subdirmode";
}
},
compile2idgxml: {
cwd: "./articles",
cmd: function () {
return "review-compile --all --target=idgxml --subdirmode";
}
},
compile2pdf: {
cwd: "./articles",
cmd: function () {
return "review-pdfmaker config.yml";
}
},
compile2epub: {
cwd: "./articles",
cmd: function () {
return "review-epubmaker config.yml";
}
},
readme: {
cmd: function () {
return "review-compile --target markdown README.re > README.md";
}
}
}
});
function generateTask(target) {
return ['clean', 'exec:preprocess', 'exec:compile2' + target];
}
grunt.registerTask(
'default',
"原稿をコンパイルしてPDFファイルにする",
"pdf");
grunt.registerTask(
'clean',
"git clean -x -f を使っていらないファイルを全部消す",
"exec:clean");
grunt.registerTask(
'text',
"原稿をコンパイルしてTextファイルにする",
generateTask("text"));
grunt.registerTask(
'html',
"原稿をコンパイルしてHTMLファイルにする",
generateTask("html"));
grunt.registerTask(
'idgxml',
"原稿をコンパイルしてInDesign用XMLファイルにする",
generateTask("idgxml"));
grunt.registerTask(
'pdf',
"原稿をコンパイルしてpdfファイルにする",
generateTask("pdf"));
grunt.registerTask(
'epub',
"原稿をコンパイルしてepubファイルにする",
generateTask("epub"));
grunt.registerTask(
'readme',
"README.reからREADME.mdを生成する(GitHub用)",
["exec:readme"]);
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
};