-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulp.base.js
89 lines (74 loc) · 2.07 KB
/
gulp.base.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
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const gulp = require('gulp');
const sass = require('gulp-sass');
const rename = require('gulp-rename');
const gif = require('gulp-if');
const sourcemaps = require('gulp-sourcemaps');
const postcss = require('gulp-postcss');
const browser = require('browser-sync');
module.exports = function (settings) {
const dev = process.env.NODE_ENV !== 'production';
const postcssList = [
autoprefixer({
browsers: [
'last 10 version',
'> 5%'
]
})
];
if (!dev) {
postcssList.push(cssnano({
safe: true
}));
}
// Delete the "dist" folder
// This happens every time a build starts
gulp.task('clean', function (done) {
done();
});
// Start a server with BrowserSync to preview the site in
gulp.task('server', function (done) {
if (dev) {
browser.init(settings.server);
}
done();
});
// Reload the browser with BrowserSync
gulp.task('reload', function (done) {
if (dev) {
browser.reload();
}
done();
});
gulp.task('sass', function () {
let sassConfig = {
includePaths: settings.sass.includePaths,
outputStyle: dev ? 'nested' : 'compressed',
sourceMap: dev,
sourceComments: dev,
sourceMapEmbed: dev
};
return gulp.
src(settings.sass.files).
pipe( gif(dev, sourcemaps.init()) ).
pipe(
sass(sassConfig).
on('error', sass.logError)
).
pipe( gif(dev, sourcemaps.write(undefined, { sourceRoot: null })) ).
pipe( postcss(postcssList) ).
pipe( rename({ dirname: '' }) ).
pipe( gulp.dest(settings.sass.output, { overwrite: true }) ).
pipe( gif(dev, browser.reload({ stream: true })) );
});
// Watch for changes to static assets, pages, Sass, and JavaScript
gulp.task('watch', function () {
if (!dev) {
return;
}
gulp.watch(settings.sass.files, ['sass']);
gulp.watch(settings.scripts.files).on('change', browser.reload);
});
gulp.task('default', ['clean', 'server', 'sass', 'watch']);
};