-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js.back
257 lines (256 loc) · 10.7 KB
/
gulpfile.js.back
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/**
* Created by tengfeisu on 2016/1/11.
*/
var gulp = require('gulp'),//基础库
imagemin = require('gulp-imagemin'),//图片压缩
pngquant = require('imagemin-pngquant'),//深度压缩png图片
cache = require('gulp-cache'), //图片缓存,只有图片替换了才压缩
clean = require('gulp-clean'), //清空文件夹
jshint = require('gulp-jshint'),//js语法检测
uglify = require('gulp-uglify'),//js压缩
rename= require('gulp-rename'),//重命名
concat = require('gulp-concat'),//文件合并
htmlmin = require('gulp-htmlmin'),//html文件压缩
autoprefixer = require('gulp-autoprefixer'),//css自动添加前缀
cssmin = require('gulp-minify-css'),//css压缩
less = require('gulp-less'),//less
notify = require('gulp-notify'),//显示报错信息和报错后不终止当前gulp任务
plumber = require('gulp-plumber'), //出现异常并不终止watch事件
rev = require('gulp-rev'); // 为文件添加MD5码
revCollector = require('gulp-rev-collector'); // 将文件替换为MD5版本的文件
processhtml = require('gulp-processhtml');
livereload = require('gulp-livereload'); //自动刷新
babel = require('gulp-babel');
//sass = require('gulp-ruby-sass'),//sass
//产出路径
var destPath = {
html: 'dest/',
css: 'dest/css/',
fonts: 'dest/fonts/',
images: 'dest/images/',
js: 'dest/js/',
music: 'dest/music/'
};
//源路径
var srcPath = {
html: 'src/*.html',
css: 'src/less/*.*',
fonts: 'src/fonts/*.*',
images: 'src/images/*.*',
js: 'src/js/*.*',
music: 'src/music/*.*'
};
//单个文件删除
gulp.task('cleanHtml',function(){
return gulp.src(destPath.html)
.pipe(clean({force:true}))
});
gulp.task('cleanCss',function(){
return gulp.src(destPath.css)
.pipe(clean({force:true}))
});
gulp.task('cleanFonts',function(){
return gulp.src(destPath.fonts)
.pipe(clean({force:true}))
});
gulp.task('cleanImage',function(){
return gulp.src(destPath.images)
.pipe(clean({force:true}))
});
gulp.task('cleanJs',function(){
return gulp.src(destPath.js)
.pipe(clean({force:true}))
});
gulp.task('cleanMusic',function(){
return gulp.src(destPath.music)
.pipe(clean({force:true}))
});
//图片处理
gulp.task('image',['cleanImage'],function(){
return gulp.src(srcPath.images)
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(cache(imagemin({
progressive:true,//类型:Boolean 默认:false 无损压缩jpg图片
svgoPlugins:[{removeViewBox:false}],//不要移除svg的viewbox属性
use:[pngquant()] //使用pngquant深度压缩png图片的imagemin插件
})))
.pipe(gulp.dest(destPath.images))
.pipe(livereload())
});
//线上脚本处理
gulp.task('jsProd',['cleanJs'],function(){
return gulp.src(srcPath.js)
.pipe(babel({
presets: ['es2015']
}))
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(jshint({'expr':true}))
.pipe(jshint.reporter('default')) // 对代码进行报错提示
.pipe(uglify({
mangle:false, //类型:Boolean 默认:true 是否修改变量名
compress:false //类型:Boolean 默认:true 是否完全压缩
}))
.pipe(concat('main.js')) //合并后的文件名
.pipe(rename({
//prefix: 'stf-',
suffix: '.min'
}))
.pipe(rev()) //生成MD5版本文件
.pipe(gulp.dest(destPath.js))
.pipe(rev.manifest('manifest-js.json',{merge:true})) // 生成原文件与MD5版本文件的映射文件
.pipe(gulp.dest(destPath.html+'rev/')) //将生成的映射文件添加到rev文件夹下
.pipe(livereload())
});
//开发脚本处理
gulp.task('jsDev',['cleanJs'],function(){
return gulp.src(srcPath.js)
.pipe(babel({
presets: ['es2015']
}))
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(jshint({'expr':true}))
.pipe(jshint.reporter('default')) // 对代码进行报错提示
.pipe(rev())
.pipe(gulp.dest(destPath.js))
.pipe(rev.manifest('manifest-js.json',{merge:true}))
.pipe(gulp.dest(destPath.html+'rev/'))
.pipe(livereload())
});
//线上HTML处理
gulp.task('htmlProd',['cleanHtml'],function(){
var options = {
removeComments: false,//清除HTML注释
collapseWhitespace: false,//压缩HTML
collapseBooleanAttributes: true,//省略布尔属性的值 <input checked="true"/> ==> <input />
removeEmptyAttributes: true,//删除所有空格作属性值 <input id="" /> ==> <input />
removeScriptTypeAttributes: true,//删除<script>的type="text/javascript"
removeStyleLinkTypeAttributes: true,//删除<style>和<link>的type="text/less"
minifyJS: false,//压缩页面JS
minifyCSS: true//压缩页面CSS
};
return gulp.src(srcPath.html)
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(processhtml())
.pipe(htmlmin(options))
.pipe(gulp.dest(destPath.html))
.pipe(livereload())
});
//开发HTML处理
gulp.task('htmlDev',['cleanHtml'],function(){
var options = {
removeComments: false,//清除HTML注释
collapseWhitespace: false,//压缩HTML
collapseBooleanAttributes: true,//省略布尔属性的值 <input checked="true"/> ==> <input />
removeEmptyAttributes: true,//删除所有空格作属性值 <input id="" /> ==> <input />
removeScriptTypeAttributes: true,//删除<script>的type="text/javascript"
removeStyleLinkTypeAttributes: true,//删除<style>和<link>的type="text/less"
minifyJS: false,//压缩页面JS
minifyCSS: true//压缩页面CSS
};
return gulp.src(srcPath.html)
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(htmlmin(options))
.pipe(gulp.dest(destPath.html))
.pipe(livereload())
});
//线上CSS处理
gulp.task('cssProd',['cleanCss'],function(){
return gulp.src(srcPath.css)
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(less())
.pipe(autoprefixer({
browsers:['> 5%','last 2 versions','Android >= 4.0','IOS >=6'],
cascade:true, //是否美化属性值 默认:true
remove:true //是否去掉不必要的前缀 默认:true
}))
.pipe(cssmin({
advanced:false, //类型:Boolean 默认:true [是否开启高级优化(合并选择器等)]
compatibility:'ie8', //类型:String 默认:''or'*' eg: 'ie8':IE8兼容模式
keepBreaks:true //类型:Boolean 默认:false [是否保留换行]
}))
.pipe(concat('main.css')) //合并后的文件名
.pipe(rename({
suffix:'.min'
}))
.pipe(rev())
.pipe(gulp.dest(destPath.css))
.pipe(rev.manifest('manifest-css.json',{merge:true}))
.pipe(gulp.dest(destPath.html+'rev/'))
.pipe(livereload())
});
//开发CSS处理
gulp.task('cssDev',['cleanCss'],function(){
return gulp.src(srcPath.css)
.pipe(plumber({errorHandler:notify.onError('Error:<%= error.message %>')}))
.pipe(less())
.pipe(autoprefixer({
browsers:['> 5%','last 2 versions','Android >= 4.0','IOS >=6'],
cascade:true, //是否美化属性值 默认:true
remove:true //是否去掉不必要的前缀 默认:true
}))
.pipe(rev())
.pipe(gulp.dest(destPath.css))
.pipe(rev.manifest('manifest-css.json',{merge:true}))
.pipe(gulp.dest(destPath.html+'rev/'))
.pipe(livereload())
});
//字体处理
gulp.task('font',['cleanFonts'],function(){
return gulp.src(srcPath.fonts)
.pipe(gulp.dest(destPath.fonts))
.pipe(livereload())
});
//音频处理
gulp.task('music',['cleanMusic'],function(){
return gulp.src(srcPath.music)
.pipe(gulp.dest(destPath.music))
.pipe(livereload())
});
//将html中引入的js,css文件替换为MD5版本的文件(线上)
gulp.task('revHTMLProd',['jsProd','cssProd'],function(){
return gulp.src([destPath.html+'rev/*.json',destPath.html+'*.html'])
.pipe(revCollector()) // 将HTML中不带MD5码的文件按照rev生成的映射关系替换为MD5版本的文件
.pipe(gulp.dest(destPath.html))
})
//将html中引入的js,css文件替换为MD5版本的文件(开发)
gulp.task('revHTMLDev',['jsDev','cssDev'],function(){
return gulp.src([destPath.html+'rev/*.json',destPath.html+'*.html'])
.pipe(revCollector())
.pipe(gulp.dest(destPath.html))
})
//文件统一清理
gulp.task('cleanAll',function(){
return gulp.src([destPath.html,destPath.css,destPath.fonts,destPath.images,destPath.js,destPath.music])
.pipe(clean({force:true}))
});
//上线任务统一编译
gulp.task('demoProd',['cleanAll'],function(){
gulp.start('htmlProd','jsProd','cssProd','image','font','music','revHTMLProd');
});
//开发任务统一编译
gulp.task('demoDev',['cleanAll'],function(){
gulp.start('htmlDev','jsDev','cssDev','image','font','music','revHTMLDev');
});
//变动统一监听
gulp.task('demoWatch',function(){
livereload.listen();
//监听HTML
gulp.watch(srcPath.html,['html']);
//监听CSS
gulp.watch(srcPath.css,['css']);
//监听JS
gulp.watch(srcPath.js,['js']);
//监听字体
gulp.watch(srcPath.fonts,['font']);
//监听音频
gulp.watch(srcPath.music,['music']);
//监听图片
var img = gulp.watch(srcPath.images,['image']);
//监听图片删除,删除后重新编译
img.on('change',function(event){
if(event.type=='deleted'){
gulp.start('image');
console.log(event.type);
}
})
});