-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
111 lines (95 loc) · 2.96 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
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
var gulp = require ( 'gulp' ),
browserSync = require ('browser-sync'),
autoprefixer = require ('gulp-autoprefixer'),
sass = require ('gulp-sass'),
imagemin = require ('gulp-imagemin'),
concat = require ('gulp-concat'),
cp = require ('child_process');
var messages = {
jekyllBuild: '<span style="color: grey">Running:</span> $ jekyll build'
};
/*
============================================================
BUILD THE JEKYLL SITE
============================================================
*/
gulp.task('jekyll-build', function (done) {
browserSync.notify(messages.jekyllBuild);
return cp.spawn('jekyll', ['build'], {stdio: 'inherit'})
.on('close', done);
});
/*
============================================================
REBUILD JEKYLL & DO PAGE RELOAD
============================================================
*/
gulp.task('jekyll-rebuild', ['jekyll-build'], function () {
browserSync.reload();
});
/*
============================================================
WAIT FOR JEKYLL-BUILD, THEN LAUCH THE SERVER
============================================================
*/
gulp.task('browser-sync', ['jekyll-build'], function() {
browserSync({
server: {
baseDir: '_site'
}
});
});
/*
============================================================
TASK SASS
============================================================
*/
gulp.task('sass', function () {
return gulp.src('_sass/main.scss')
.pipe(sass({
includePaths: ['scss'],
onError: browserSync.notify
}))
.pipe(autoprefixer({
browsers: ['last 12 versions'],
cascade: true
}))
.pipe(sass({outputStyle: 'compressed'}))
.pipe(gulp.dest('_site/assets/css'))
.pipe(browserSync.reload({stream:true}))
.pipe(gulp.dest('assets/css'));
});
/*
============================================================
TASK IMAGES AND MINIFY
============================================================
*/
gulp.task('imagemin', function(){
gulp.src('src/images/**/*.{jpg,png,svg,jpeg}')
.pipe(imagemin({ optimizationLevel: 3, progressive: true, interlaced: true }))
.pipe(gulp.dest('assets/images'));
});
/*
============================================================
TASK JAVASCRIPT
============================================================
*/
gulp.task('js', function(){
return gulp.src('src/js/*.js')
.pipe(concat('main.js'))
.pipe(uglify())
.pipe(gulp.dest('_site/assets/js'))
.pipe(browserSync.reload({stream:true}))
.pipe(gulp.dest('assets/js'));
});
/*
============================================================
TASK WATCH
============================================================
*/
gulp.task( 'watch', function(){
gulp.watch('_sass/**/*.scss', ['sass']);
gulp.watch('src/image/**/*.{jpg,png,svg,jpeg}', ['imagemin']);
gulp.watch('src/js/**/*.js', ['js']);
gulp.watch(['*.html', '_layouts/*.html', '_posts/*', '_includes/*', 'pages/*'], ['jekyll-rebuild']);
});
gulp.task( 'default', ['imagemin','browser-sync', 'watch'] );