generated from TechBooster/ReVIEW-Template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.js
156 lines (142 loc) · 3.76 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
"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 reviewConfig = process.env["REVIEW_CONFIG_FILE"] || "config.yml"; // REVIEW_CONFIG_FILE="config-ebook.yml" npm run pdf のようにすると別のconfigでビルドできるよ
const reviewPreproc = `${reviewPrefix}review-preproc${reviewPostfix}`;
const reviewCompile = `${reviewPrefix}review-compile${reviewPostfix}`;
const reviewPdfMaker = `${reviewPrefix}review-pdfmaker${reviewPostfix}`;
const reviewEpubMaker = `${reviewPrefix}review-epubmaker${reviewPostfix}`;
const reviewWebMaker = `${reviewPrefix}review-webmaker${reviewPostfix}`;
const reviewTextMaker = `${reviewPrefix}review-textmaker${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`,
`${articles}/webroot`
]
}
},
shell: {
preprocess: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewPreproc} -r --tabwidth=2 *.re`
},
compile2text: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewTextMaker} ${reviewConfig}`
},
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} ${reviewConfig}`
},
compile2epub: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewEpubMaker} ${reviewConfig}`
},
compile2web: {
options: {
execOptions: {
cwd: articles,
}
},
command: `${reviewWebMaker} ${reviewConfig}`
}
}
});
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"));
grunt.registerTask(
"web",
"原稿をコンパイルしてWebページファイルにする",
generateTask("web"));
require('load-grunt-tasks')(grunt);
};