forked from SYSU-SCC/sysu-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
49 lines (44 loc) · 1.4 KB
/
gulpfile.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
const gulp = require('gulp')
const shell = require('gulp-shell')
// var browserSync = require('browser-sync');
// var reload = browserSync.reload;
// 监视文件改动并重新载入
// gulp.task('serve', function() {
// browserSync({
// server: {
// baseDir: '.',
// middleware: [{
// route: "/",
// handle: (req, res, next) => {
// res.writeHead(302, { 'Location': '/main.pdf' })
// res.end()
// next()
// }
// }]
// }
// });
//
// gulp.watch(['main.pdf'], reload);
// });
// gulp.task('build', buildThesis);
gulp.task('build', shell.task('make'))
gulp.task('watch', function() {
gulp.watch(['./**/*.tex', './**/*.cls'], ['build']);
})
gulp.task('default', ['build', 'watch']);
// function buildThesis() {
// const spawn = require('child_process').spawn;
// const buildThesis = spawn('make.exe');
//
// buildThesis.stdout.on('data', (data) => {
// console.log(`stdout: ${data}`);
// });
//
// buildThesis.stderr.on('data', (data) => {
// console.log(`stderr: ${data}`);
// });
//
// buildThesis.on('close', (code) => {
// console.log(`child process exited with code ${code}`);
// });
// }