-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
139 lines (126 loc) · 3.14 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
"use strict";
let fs = require("fs");
let yaml = require("js-yaml");
const articles = "articles";
const bookConfig = yaml.safeLoad(fs.readFileSync(`${articles}/config.yml`, "utf8"));
const reviewPrefix = process.env["REVIEW_PREFIX"] || "bundle exec ";
const reviewPostfix = process.env["REVIEW_POSTFIX"] || ""; // REVIEW_POSTFIX="-peg" npm run pdf とかするとPEGでビルドできるよ
const reviewPreproc = `${reviewPrefix}review-preproc${reviewPostfix}`;
const reviewCompile = `${reviewPrefix}review-compile${reviewPostfix}`;
const reviewPdfMaker = `${reviewPrefix}review-pdfmaker${reviewPostfix}`;
const reviewEpubMaker = `${reviewPrefix}review-epubmaker${reviewPostfix}`;
module.exports = grunt => {
grunt.initConfig({
clean: {
review: {
src: [
`${articles}/${bookConfig.bookname}-*/`, // pdf, epub temp dir
`${articles}/*.pdf`,
`${articles}/*.epub`,
`${articles}/*.html`,
`${articles}/*.md`,
`${articles}/*.xml`,
`${articles}/*.txt`
]
}
},
shell: {
preprocess: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewPreproc} -r --tabwidth=2 *.re`
},
compile2text: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewCompile} --target=text`
},
compile2markdown: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewCompile} --target=markdown`
},
compile2html: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewCompile} --target=html --stylesheet=style.css --chapterlink`
},
compile2latex: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewCompile} --target=latex --footnotetext`
},
compile2idgxml: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewCompile} --target=idgxml`
},
compile2pdf: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewPdfMaker} config.yml`
},
compile2epub: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewEpubMaker} config.yml`
}
}
});
function generateTask(target) {
return ["clean", "shell:preprocess", `shell:compile2${target}`];
}
grunt.registerTask(
"default",
"原稿をコンパイルしてPDFファイルにする",
"pdf");
grunt.registerTask(
"text",
"原稿をコンパイルしてTextファイルにする",
generateTask("text"));
grunt.registerTask(
"markdown",
"原稿をコンパイルしてMarkdownファイルにする",
generateTask("markdown"));
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"));
require('load-grunt-tasks')(grunt);
};