-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
127 lines (112 loc) · 3.37 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
123
124
125
126
127
const { src, dest, series, parallel, watch } = require('gulp'); //загружаем, подключаем gulp
const sass = require('gulp-sass'); //компилятор в css
const uglify = require('gulp-uglify'); //подкл. пакет минифицирования .js файлов
const concat = require('gulp-concat'); //склеивает файлы, в один
const cleanCSS = require('gulp-clean-css'); //сжимает css файлы
const del = require('del'); //удаление папки перед сборкой
const imagemin = require('gulp-imagemin'); //оптимизация изображений
const browserSync = require('browser-sync').create();
const reload = browserSync.reload; //перезегрузка сервера
const sourcemaps = require ('gulp-sourcemaps'); //позволяет дебажить минифицированный код в браузере
const path = {
source: {
html: "app/index.html",
styles: [
"app/styles/main.sass",
"app/styles/**/*.sass"
],
js: [
"app/js/script.js"
],
image: "app/img/**/*",
fonts: "app/fonts/**/*",
data: "app/data/*.json"
},
build: {
html: "build/",
css: "build/css/",
js: "build/js/",
image: "build/img/",
fonts: "build/fonts/",
data: "build/data/"
}
};
function html() {
return src(path.source.html)
.pipe(dest(path.build.html))
.pipe(reload({stream:true})); //перезагрузки сервера
}
function script() {
return src(path.source.js)
.pipe(sourcemaps.init())
.pipe(uglify())
.pipe(concat('main.js'))
.pipe(sourcemaps.write())
.pipe(dest(path.build.js))
.pipe(reload({stream:true}));
}
function css() {
return src(path.source.styles)
.pipe(sourcemaps.init())// активация sourcemaps
.pipe(sass().on('error', sass.logError))
.pipe(concat('style.css'))
.pipe(cleanCSS()) //минификация
.pipe(sourcemaps.write())// активация sourcemaps
.pipe(dest(path.build.css))
.pipe(reload({stream:true}));
}
function images() {
return src(path.source.image)
.pipe(imagemin([
imagemin.gifsicle({interlaced: true}),
imagemin.mozjpeg({quality: 75, progressive: true}),
imagemin.optipng({optimizationLevel: 5}),
imagemin.svgo({
plugins: [
{removeViewBox: true},
{cleanupIDs: false}
]
})
], {
verbose: true
}))
.pipe(dest(path.build.image));
};
function fonts() {
return src(path.source.fonts)
.pipe(dest(path.build.fonts));
}
function docs() {
return src("./build/**/*")
.pipe(dest("./docs"));
}// созданиe папки для gh-pages
function datas() {
return src(path.source.data)
.pipe(dest(path.build.data));
};
function cleanFolder() {
return del(['build']);
};//задача удаления файла или папки
function browser_Sync() {
browserSync.init({
server: {
baseDir: "./build"
}
});
};
function watcher() {
watch('app/index.html', series(html, docs));
watch('app/styles/**/*.sass', series(css, docs));
watch('app/js/*.js', series(script, docs));
watch('app/data/*.json', series(datas, docs));
};
const build = series(cleanFolder, parallel(html, css, script, images, fonts, datas));
const server = series(build, docs, parallel(watcher, browser_Sync));
exports.html = html;
exports.css = css;
exports.script = script;
exports.images = images;
exports.clean = cleanFolder;
exports.build = build;
exports.server = server;
exports.default = server;