-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpFile.js
More file actions
92 lines (73 loc) · 1.99 KB
/
Copy pathgulpFile.js
File metadata and controls
92 lines (73 loc) · 1.99 KB
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
'use strict';
var gulp=require('gulp'),
sass=require('gulp-sass'),
browserSync=require('browser-sync'),
del=require('del'),
imagemin=require('gulp-imagemin'),
uglify=require('gulp-uglify'),
usemin=require('gulp-usemin'),
rev=require('gulp-rev'),
cleanCss=require('gulp-clean-css'),
flatmap=require('gulp-flatmap'),
htmlmin=require('gulp-htmlmin');
gulp.task('sass',function()
{
return gulp.src('./css/*.scss')//source of object
.pipe(sass().on('error',sass.logError))//pipe objects in function
.pipe(gulp.dest('./css'));//destination
}) ;
gulp.task('sass:watch',function()
{
gulp.watch('./css/*.scss',['sass']);
//gulp watch css files and when chnges occur sass run
});
gulp.task('browser-sync',function()
{
var files=[
'./*.html',
'./css/*.css',
'./js/*.js',
'./img/*.{png,jpg,gif}'
];
browserSync.init(files,{
server:{
baseDir:'./'
}
})
})
gulp.task('default',gulp.series('browser-sync',function(){
gulp.start('sass:watch');
}))
gulp.task('clean',function()
{
return del(['dist']);
})
gulp.task('copyfonts',function()
{
return gulp.src('./node_modules/font-awesome/fonts/**/*.{ttf,woff,eot,svg}*')
.pipe(gulp.dest('./dist/fonts'))
}
)
gulp.task('imagemin',function()
{
return gulp.src("./img/*.{gif,png,jpg}")
.pipe(imagemin({optimizedLevel:3,progressive:true,interlaced:true}))
.pipe(gulp.dest('dist/img'))
})
gulp.task('usemin',function(){
return gulp.src('./*.html')
.pipe(flatmap(function(stream,file)
{
return stream
.pipe(usemin({
css:[rev()],
html:[function(){return htmlmin({collapseWhitespace:true})}],
js:[uglify(),rev()],
inlinejs:[uglify()],
inlinecss:[cleanCss(),'concat']
}))
}))
.pipe(gulp.dest('dist/'))
})
gulp.task('build',gulp.series('clean',gulp.parallel('copyfonts','imagemin','usemin',function(done){done();}
)))