-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
60 lines (51 loc) · 1.81 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
const gulp = require('gulp')
const browserSync = require('browser-sync');
const sass = require('gulp-sass');
const rename = require("gulp-rename");
const autoprefixer = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
// const webp = require('gulp-webp');
/*const devip = require('dev-ip');*/
/*gulp.task("imgsWebp", function () {
return gulp.src("src/img/!**!/!*.{jpg,jpeg,png}")
// Конвертирует изображение в webp и сжимает его.
.pipe(webp({
quality: 100
}))
// Выгрузка.
.pipe(gulp.dest('src/img/compressed'))
});*/
// Static server
gulp.task('server', function() {
browserSync.init({
/*proxy: "http://localhost/LearnJavaScriptAndReact/src/",*/
server: {
baseDir: "src"
},
notify: false/*,
host: devip()*/
});
});
const codeStyle = 'scss';
gulp.task('styles', function(){
return gulp.src(`src/${codeStyle}/**/*.+(scss|sass)`)
.pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
.pipe(rename({
prefix: "",
suffix: ".min",
}))
.pipe(autoprefixer({
grid: true,
cascade: false
}))
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(gulp.dest("src/css"))
.pipe(browserSync.stream());
});
gulp.task('watch', function(){
gulp.watch(`src/${codeStyle}/**/*.+(scss|sass)`, gulp.parallel("styles"));
gulp.watch("src/*.html").on("change", browserSync.reload);
// gulp.watch("src/**/*.php").on("change", browserSync.reload);
gulp.watch("src/js/*.js").on("change", browserSync.reload);
});
gulp.task('default', gulp.parallel('watch', 'server', 'styles'/*, 'imgsWebp'*/));