forked from chriskrycho/v5.chriskrycho.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
51 lines (42 loc) · 1.12 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
const { src, dest, parallel, series, watch } = require('gulp');
const sass = require('gulp-dart-sass');
const del = require('del');
sass.compiler = require('sass');
const build = (file) => () =>
src(file)
.pipe(
sass
.sync({
outputStyle: 'compressed',
sourceMap: true,
})
.on('error', sass.logError),
)
.pipe(dest('./site/_styles'));
function style() {
return build('./site/_includes/styles/style.scss')();
}
function print() {
return build('./site/_includes/styles/print.scss')();
}
function fonts() {
return build('./site/_includes/styles/fonts.scss')();
}
function clean() {
return del([
'./site/_includes/styles/style.css',
'./site/_includes/styles/fonts.css',
'./site/_includes/styles/print.css',
]);
}
const all = parallel(style, fonts, print);
function watchStyles() {
watch('./site/_includes/styles/**/*.scss', all);
}
exports.clean = clean;
exports.style = style;
exports.fonts = fonts;
exports.print = print;
exports.watch = watchStyles;
exports.all = all;
exports.default = series(clean, all);