This repository was archived by the owner on Aug 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
69 lines (64 loc) · 2.01 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
const $ = require('gulp-load-plugins')({'pattern': '*'});
const indentation = 4;
// ----- init browser-sync --------------------------------
$.gulp.task('browser-sync', () => {
return $.browserSync.init({
notify: false,
open: false,
server: {
baseDir: './',
index: 'demo.html',
}
});
});
// ----- compile sass [expanded] --------------------------
$.gulp.task('sass-expanded', () => {
return $.gulp.src('ug-grid.scss')
.pipe($.plumber({
errorHandler (err) {
$.notify.onError({
title: (err) => `${err.file.replace(`${process.cwd()}/`, '')}:${err.line}:${err.column}`,
message: (err) => err.messageOriginal.trim(),
sound: 'Frog',
})(err)
this.emit('end');
}
}))
.pipe($.sass({
outputStyle: 'expanded',
indentWidth: indentation
}))
.pipe($.autoprefixer())
.pipe($.gulp.dest('.'))
.pipe($.browserSync.stream({match: '**/*.css'}));
});
// ----- compile sass [compressed] ------------------------
$.gulp.task('sass-compressed', () => {
return $.gulp.src('ug-grid.scss')
.pipe($.plumber({
errorHandler (err) {
$.notify.onError({
title: (err) => `${err.file.replace(`${process.cwd()}/`, '')}:${err.line}:${err.column}`,
message: (err) => err.messageOriginal.trim(),
sound: 'Frog',
})(err)
this.emit('end');
}
}))
.pipe($.sass({
outputStyle: 'compressed'
}))
.pipe($.autoprefixer())
.pipe($.rename({
'suffix': '.min'
}))
.pipe($.gulp.dest('.'))
.pipe($.browserSync.stream({match: '**/*.css'}));
});
// ----- watch demo ---------------------------------------
$.gulp.task('watch-demo', $.gulp.parallel(['sass-expanded', 'sass-compressed', 'browser-sync'], () => {
$.gulp.watch('demo.html').on('change', $.browserSync.reload);
$.gulp.watch('**/*.scss', $.gulp.parallel(['sass-expanded', 'sass-compressed']));
}));
// ----- default task (compile scss) ----------------------
$.gulp.task('default', $.gulp.series('sass-expanded', 'sass-compressed'));