generated from rybakooov/GULP-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
122 lines (109 loc) · 3.07 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
112
113
114
115
116
117
118
119
120
121
122
const gulp = require('gulp');
const pug = require('gulp-pug');
const del = require('del');
const browserSync = require('browser-sync').create();
const imagemin = require('gulp-imagemin');
const pngquant = require('imagemin-pngquant');
const cache = require('gulp-cache');
const autoprefixer = require('gulp-autoprefixer');
const include = require('gulp-include');
// styles
const sass = require('gulp-sass');
const rename = require('gulp-rename');
const sourcemaps = require('gulp-sourcemaps');
const paths = {
root: './current',
templates: {
pages: 'src/templates/pages/*.pug',
src: 'src/templates/**/*.pug',
dest: 'current/assets/'
},
styles: {
src: 'src/styles/**/*.*',
dest: 'current/assets/styles/'
},
scripts: {
src: 'src/scripts/**/*.*',
dest: 'current/assets/scripts/'
},
images: {
src: 'src/images/**/*.*',
dest: 'current/assets/images/'
},
fonts: {
src: 'src/fonts/**/*.*',
dest: 'current/assets/fonts/'
}
}
//pug
function templates() {
return gulp.src(paths.templates.pages)
.pipe(pug({ pretty: true }))
.pipe(gulp.dest(paths.root));
}
//scss
function styles() {
return gulp.src('./src/styles/app.scss')
.pipe(sourcemaps.init())
.pipe(sass({ outputStyle: 'compressed' }))
.pipe(autoprefixer(['last 15 versions', '> 1%', 'ie 8', 'ie 7'], { cascade: true })) // Создаем префиксы
.pipe(sourcemaps.write())
.pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest(paths.styles.dest))
}
//scripts
function scripts() {
return gulp.src(paths.scripts.src)
.pipe(include())
.pipe(gulp.dest(paths.scripts.dest));
}
//fonts
function fonts() {
return gulp.src(paths.fonts.src)
.pipe(gulp.dest(paths.fonts.dest));
}
// картинки
function images() {
return gulp.src(paths.images.src) // Берем все изображения из app
.pipe(cache(imagemin({ // Сжимаем их с наилучшими настройками с учетом кеширования
interlaced: true,
progressive: true,
svgoPlugins: [{ removeViewBox: false }],
use: [pngquant()]
})))
.pipe(gulp.dest(paths.images.dest)); // Выгружаем на продакшен
}
// очистка
function clean() {
return del(paths.root);
}
// следим за исходниками, папка src
function watch() {
gulp.watch(paths.styles.src, styles);
gulp.watch(paths.templates.src, templates);
gulp.watch(paths.images.src, images);
gulp.watch(paths.scripts.src, scripts);
}
// следим за build и релоадим браузер
function server() {
browserSync.init({
server: paths.root
});
browserSync.watch(paths.root + '/**/*.*', browserSync.reload)
}
exports.templates = templates;
exports.styles = styles;
exports.clean = clean;
exports.images = images;
exports.scripts = scripts;
exports.fonts = fonts;
// просто работаем
gulp.task('default', gulp.series(
gulp.parallel(styles, templates, images, scripts, fonts),
gulp.parallel(watch, server)
));
// контрольная сборка на продакшен
gulp.task('build', gulp.parallel(
clean,
gulp.parallel(styles, templates, images, scripts, fonts)
));