-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
67 lines (57 loc) · 1.59 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
const gulp = require("gulp");
const terser = require("gulp-terser");
const rename = require("gulp-rename");
const browserSync = require ('browser-sync');
const eslint =require("gulp-eslint");
const prettyError = require("gulp-prettyerror");
const sass = require ('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const cssnano = require ('gulp-cssnano');
//gulp sass
gulp.task('sass', function() {
return gulp
.src('./sass/style.scss')
.pipe(prettyError())
.pipe(sass())
.pipe(
autoprefixer({
browsers: ['last 2 versions'],
}),
)
.pipe(gulp.dest('./build/css'))
.pipe(cssnano())
.pipe(rename('style.min.css'))
.pipe(gulp.dest('./build/css'));
});
gulp.task("lint", function(){
return(
gulp.src(["./js/*.js"])
.pipe(prettyError())
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError())
);
});
gulp.task("scripts",
gulp.series("lint", function() {
return gulp
.src("./js/*.js")
.pipe(terser())
.pipe(rename({ extname: ".min.js" }))
.pipe(gulp.dest("./build/js"));
})
);
gulp.task("browser-sync", function(done){
browserSync.init({
server:{
baseDir: "./"
}
});//end of browserSync.init
gulp.watch(["index.html", "build/css/*.css","build/js/*.js"])
.on("change",browserSync.reload);
});//browser-sync
gulp.task("watch", function() {
gulp.watch("js/*.js", gulp.series("scripts"));
gulp.watch("sass/**/*.scss", gulp.series("sass"));
});
gulp.task("default", gulp.parallel("browser-sync","watch"));