forked from xgrommx/rx-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
62 lines (51 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
59
60
61
var _ = require('lodash');
var gulp = require('gulp');
var gutil = require('gulp-util');
var less = require('gulp-less');
var rename = require('gulp-rename');
var minifyCSS = require('gulp-minify-css');
var browserify = require('browserify');
var mergeStream = require('merge-stream');
var source = require('vinyl-source-stream');
var ghPages = require('gulp-gh-pages');
var shell = require('gulp-shell');
var runSequence = require('run-sequence');
gulp.task('css', function() {
var merged = mergeStream();
_.each({
'ebook.less': 'ebook/ebook.css',
'pdf.less': 'ebook/pdf.css',
'mobi.less': 'ebook/mobi.css',
'epub.less': 'ebook/epub.css',
'website.less': 'website/style.css'
}, function(out, input) {
gutil.log('compiling', input, 'into', out);
merged.add(gulp.src('theme/stylesheets/'+input)
.pipe(less())
.pipe(minifyCSS())
.pipe(rename(out))
.pipe(gulp.dest('theme/assets/')));
});
return merged;
});
gulp.task('js', function() {
return browserify('./theme/javascript/index.js')
.bundle()
.pipe(source('app.js'))
.pipe(gulp.dest('./theme/assets/website'));
});
gulp.task('assets', function() {
return gulp.src('./node_modules/font-awesome/fonts/*')
.pipe(gulp.dest('theme/assets/website/fonts/fontawesome/'));
});
gulp.task('default', ['css', 'js', 'assets'], function() {
});
// gulp.task('build', shell.task(['gitbook build']));
// gulp.task('serve', shell.task(['gitbook serve']));
// gulp.task('pdf', shell.task(['gitbook pdf']));
// gulp.task('update', shell.task(['git add . & git commit -m "Book has been updated" & git push origin master']));
gulp.task('deploy', /*['build'],*/ function() {
return gulp.src('./_book/**/*')
.pipe(ghPages());
});
// gulp.task('upload', runSequence('deploy', 'update'));