forked from dailc/hybrid-h5plus-rayapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
307 lines (300 loc) · 9.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
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
// 修复 gulp-uglify except不可用的bug,需要改成reserved
var config = require('./config');
var gulp = require('gulp');
var minifyCss = require('gulp-clean-css'); //- 压缩CSS为一行;
var htmlmin = require('gulp-htmlmin');
var rev = require('gulp-rev'); //- 对文件名加MD5后缀
var revCollector = require('gulp-rev-collector'); //- 路径替换
var clean = require('gulp-clean');
var uglify = require('gulp-uglify')
//串行执行任务
var runSequence = require('run-sequence');
//同个task下合并多个步骤
var mergeStream = require('merge-stream');
//图片压缩相关
var imagemin = require('gulp-imagemin');
//cach
var cache = require('gulp-cache');
//错误抛出的补丁->防止异常情况下停止程序
var plumber = require('gulp-plumber');
var handleErrors = function(error) {
//继续监听
console.log("~~~错误:" + error);
};
//情况以前目录
gulp.task('clean', function() {
return gulp.src([
config.clean.src
])
//异常处理的补丁
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(clean({
force: true
}));
});
//处理需要md5签名的图片
gulp.task('dealMd5Img', function() {
//排除html/**/img下面的
//排除/libs/**/img下的
return gulp.src([config.img.src, '!' + config.html.img.src, '!' + config.libs.img.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(cache(imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})))
.pipe(rev())
.pipe(gulp.dest(config.img.dest))
.pipe(rev.manifest(config.img.revJson, {
//不合并
merge: false
}))
//因为已经进入了json了,所以默认./就行
.pipe(gulp.dest('./'));
});
//处理其他的图片-除去上面压缩后的
gulp.task('dealOtherImg', function() {
//html/**/img下面的
///libs/**/img下的
var htmlImg = gulp.src([config.html.img.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(cache(imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})))
.pipe(gulp.dest(config.html.img.dest));
var libsImg = gulp.src([config.libs.img.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(cache(imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})))
.pipe(gulp.dest(config.libs.img.dest));
return mergeStream(htmlImg, libsImg);
});
//压缩并处理 json-这个是json文件夹下面的配置,只处理这个文件夹
gulp.task('dealJSON', function() {
return gulp.src([config.json.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(cache(imagemin({
optimizationLevel: 3,
progressive: true,
interlaced: true
})))
.pipe(rev())
.pipe(gulp.dest(config.json.dest))
.pipe(rev.manifest(config.json.revJson, {
//不合并
merge: false
}))
//因为已经进入了json了,所以默认./就行
.pipe(gulp.dest('./'));
});
//处理css
gulp.task('dealCss', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
//排除libs下的css
return gulp.src([config.rev.revJson, config.css.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(minifyCss()) //- 压缩处理成一行
.pipe(rev()) //- 文件名加MD5后缀
.pipe(gulp.dest(config.css.dest)) //- 输出文件本地,*号会自动输出
.pipe(rev.manifest(config.css.revJson, {
merge: false
}))
.pipe(gulp.dest('./')); //- 将 rev-manifest.json 保存到 rev 目录内
});
//先处理框架第三方不会依赖其它脚本的文件,排除seajs的配置,排除cacheConfig配置
//先处理的css,所以core里就算有引用css也没问题
gulp.task('dealCoreJs', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.js.coreJs.src, '!' + config.js.seaConfigJs.src, '!' + config.js.cacheConfigJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
.pipe(rev())
.pipe(gulp.dest(config.js.coreJs.dest))
.pipe(rev.manifest(config.js.coreJs.revJson, {
merge: false
}))
.pipe(gulp.dest('./'));
});
//再处理业务js,会依赖于以上的两种js
//排除业务处理的config
gulp.task('dealBizlogicJs', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.js.bizlogicJs.src, '!' + config.js.bizConfigJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
.pipe(rev())
.pipe(gulp.dest(config.js.bizlogicJs.dest))
.pipe(rev.manifest(config.js.bizlogicJs.revJson, {
merge: false
}))
.pipe(gulp.dest('./'));
});
//再处理seajs的配置,或者是项目中的配置
gulp.task('dealSeaConfig', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.js.seaConfigJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
.pipe(rev())
.pipe(gulp.dest(config.js.seaConfigJs.dest))
.pipe(rev.manifest(config.js.seaConfigJs.revJson, {
//允许合并以前的bizConfig
//这里注意,如果是通过路径找到的json,则merge有用,否则merge并没有用
merge: true
}))
.pipe(gulp.dest('./'));
});
//处理bizConfigJs的配置,或者是项目中的配置
//排除业务设置的路径
gulp.task('dealBizConfig', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.js.bizConfigJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
.pipe(rev())
.pipe(gulp.dest(config.js.bizConfigJs.dest))
.pipe(rev.manifest(config.js.bizConfigJs.revJson, {
merge: true
}))
.pipe(gulp.dest('./'));
});
//cacheController->控制引入seaConfig
gulp.task('dealCacheConfigJs', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.js.cacheConfigJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
.pipe(rev())
.pipe(gulp.dest(config.js.cacheConfigJs.dest))
.pipe(rev.manifest(config.js.cacheConfigJs.revJson, {
merge: true
}))
.pipe(gulp.dest('./'));
});
//处理html
gulp.task('dealHtml', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.rev.revJson, config.html.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(revCollector())
.pipe(htmlmin({
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeComments: true,
removeEmptyAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
//有时候有这个配置会出错(当代码作为示例显示时),所以脚本和css只压缩单独的文件
minifyJS: true,
minifyCSS: true
})) //压缩
.pipe(gulp.dest(config.html.dest));
});
//处理其它,除去img,css,html,js,以外的,单独包括.project文件
gulp.task('dealOthers', function() {
//出去svn
return gulp.src([config.other.src, config.other.project.src, '!' + config.js.coreJs.src, '!' + config.js.bizlogicJs.src, '!' + config.css.src, '!' + config.html.src, '!' + config.json.src, '!' + config.img.src, '!' + config.other.svn.src, '!' + config.other.settings.src])
.pipe(plumber({
errorHandler: handleErrors
}))
.pipe(gulp.dest(config.other.dest));
});
// 看守
gulp.task('watch', function() {
console.log("路径:" + config.src + '/gulpWatch.json');
// 看守所有位在 dist/ 目录下的档案,一旦有更动,便进行重整
// gulp.watch([config.src+'/gulpWatch.json']).on('change', function(file) {
// console.log("改动");
// });
gulp.watch(config.src + '/gulpWatch.json', ['default']);
});
//压缩框架文件,仅仅压缩
gulp.task('MiniCoreJs', function() {
//- 需要处理的css文件,先替换里面的图片,然后再压缩md5签名
return gulp.src([config.js.coreJs.src])
.pipe(plumber({
errorHandler: handleErrors
}))
//.pipe(revCollector())
.pipe(uglify({
//mangle: true,//类型:Boolean 默认:true 是否修改变量名
mangle: {
reserved: ['require', 'exports', 'module', '$']
} //排除混淆关键字
}))
//.pipe(rev())
.pipe(gulp.dest(config.js.coreJs.dest))
// .pipe(rev.manifest(config.js.coreJs.revJson, {
// merge: false
// }))
// .pipe(gulp.dest('./'));
});
gulp.task('default', function(callback) {
if(!config.isMiniJs){
runSequence('clean', 'dealMd5Img', 'dealOtherImg', 'dealJSON', 'dealCss', 'dealCoreJs', 'dealBizlogicJs', 'dealSeaConfig', 'dealBizConfig', 'dealCacheConfigJs', 'dealHtml', 'dealOthers',
callback);
}else{
runSequence('MiniCoreJs',
callback);
}
});