-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
41 lines (35 loc) · 1.21 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
const gulp = require('gulp');
const cleanCSS = require('gulp-clean-css');
const jsmin = require('gulp-jsmin');
const htmlmin = require('gulp-htmlmin');
const tinify = require('gulp-tinify');
/* Сожми и перенеси CSS файлы */
gulp.task('minify-css', () => {
return gulp.src('src/css/*.css')
.pipe(cleanCSS())
.pipe(gulp.dest('build/css/'))
});
/* Перенеси сжатые JS-файлы */
gulp.task('move-js', () => {
return gulp.src('src/js/*.min.js')
.pipe(gulp.dest('build/js'))
});
/* Сожми JS-файлы и перенеси в build */
gulp.task('minify-js', () => {
return gulp.src(['src/js/*.js', '!src/js/*.min.js'])
.pipe(jsmin())
.pipe(gulp.dest('build/js'))
});
/* Сожми и перенеси HTML файлы */
gulp.task('htmlmin', () =>{
return gulp.src('src/*.html')
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('build/'))
});
/* Сожми изображения и перенеси их в Build */
gulp.task('imagemin', () =>{
return gulp.src('src/img/**/*.*')
.pipe(tinify('JTS0htKGtb7bKZ4NBclP1yjW6hCPrCQR'))
.pipe(gulp.dest('build/img/'))
});
gulp.task('build', gulp.series('minify-css', 'move-js', 'minify-js', 'htmlmin', 'imagemin'))