forked from easysoft/zui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
536 lines (482 loc) · 18.4 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
var extend = require('extend'),
runSequence = require('run-sequence'),
fs = require('fs'),
chmod = require('gulp-chmod'),
moment = require('moment'),
less = require('gulp-less'),
cssmin = require('gulp-cssmin'),
csscomb = require('gulp-csscomb'),
autoprefixer = require('gulp-autoprefixer'),
concat = require('gulp-concat'),
header = require('gulp-header'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
change = require('gulp-change'),
sourcemaps = require('gulp-sourcemaps'),
prettify = require('gulp-jsbeautifier'),
mkdirp = require('mkdirp'),
del = require('del'),
format = require('string-format').extend(String.prototype),
colors = require('colors'),
gulp = require('gulp'),
jsonminify = require('gulp-jsonminify'),
zui = require('./zui.json'),
pkg = require('./package.json'),
showFileDetail = true;
// Disable the 'possible EventEmitter memory leak detected' warning.
gulp.setMaxListeners(0);
// try load zui.custom.json and merge into zui.
try {
var zuicustom = require('./zui.custom.json');
if(zuicustom) extend(true, zui, zuicustom);
} catch(e) {}
var today = moment();
var typeSet = ['less', 'js', 'resource'],
lib = zui.lib,
builds = zui.builds,
BANNER = ('/*!\n' +
' * {title} - v{version} - {date}\n' +
' * {homepage}\n' +
' * GitHub: {repo} \n' +
' * Copyright (c) {year} {author}; Licensed {license}\n' +
' */\n\n'),
BANNER_OPTONS = {
title: pkg.title || pkg.name,
version: pkg.version,
date: today.format('YYYY-MM-DD'),
homepage: pkg.homepage,
repo: pkg.repository.url,
year: today.format('YYYY'),
author: pkg.author,
license: pkg.license
},
BOOTSTRAP_STATEMENT = '/*! Some code copy from Bootstrap v3.0.0 by @fat and @mdo. (Copyright 2013 Twitter, Inc. Licensed under https://www.apache.org/licenses/)*/\n\n';
function formatBanner(options) {
if(options && options.title) {
options.title = BANNER_OPTONS.title + ': ' + options.title;
}
options = Object.assign({}, BANNER_OPTONS, options);
return BANNER.format(options);
}
function tryStatSync(path) {
try {
return fs.statSync(path);
} catch(e) {
return false;
}
}
function isFileExist(path) {
var stats = tryStatSync(path);
return stats && stats.isFile();
}
function getItemList(list, items, ignoreDpds, ignoreBasic) {
items = items || [];
if(Array.isArray(list)) {
list.forEach(function(name) {
if(name === 'basic' && ignoreBasic) return;
getItemList(name, items, ignoreDpds, ignoreBasic);
});
} else if(!(list === 'basic' && ignoreBasic)) {
var item = lib[list];
if(item && items.indexOf(list) < 0) {
if(!ignoreDpds && item.dpds) {
getItemList(item.dpds, items, ignoreDpds, ignoreBasic);
}
if(item.src) items.push(list);
}
}
return items;
}
function getBuildSource(build) {
var list = [];
var sources = {
less: [],
js: [],
resource: []
};
if(!Array.isArray(list)) list = [list];
if(build.settingDpds) list = getItemList(build.settingDpds, list);
list = getItemList(build.includes, list, build.ignoreDpds, build.ignoreBasic);
list.forEach(function(item) {
var libItem = lib[item];
if(libItem && libItem.src) {
typeSet.forEach(function(type) {
if(libItem.src[type]) {
libItem.src[type].forEach(function(file) {
if(sources[type].indexOf(file) < 0) {
sources[type].push(file);
}
});
}
});
}
});
return sources;
}
function getSourceConfig(src) {
var idx = src.lastIndexOf('//');
if(idx > 0) {
return {
base: src.substr(0, idx + 1),
src: src.replace(/\/\//g, '/'),
file: src.substr(idx + 2)
};
}
idx = src.lastIndexOf('/');
return {
base: src.substr(0, idx + 1),
src: src,
file: src.substr(idx + 1)
}
}
function getBuildPath(build, type) {
var path = build.dest;
if(build.subdirectories) {
path += '/' + type + '/';
}
if(path.indexOf('.') !== 0) {
path = './' + path;
}
return path.replace(/\/\//g, '/').replace(/\/\//g, '/');
}
function getBuildDestFilename(build, type, suffix) {
var file = getBuildPath(build, type);
file += '/' + build.filename + '.' + (suffix || type);
return file.replace(/\/\//g, '/');
}
function gulpBuildColorsetJS(build, lessSrc, bannerContent) {
var name = 'build:' + build.name;
var destPath = getBuildPath(build, 'js');
return gulp.src(lessSrc)
.pipe(less())
.pipe(rename({
extname: '.js'
}))
.pipe(change(function(css, done) {
css = css.replace(/\/\*\*/g, '').replace(/\*\*\//g, '');
css = css.replace(/\.color-(\w+) \{\n color: (#?\w+);\n\}/g, " $1: '$2',");
css = css.replace(',\n };', '\n };');
css = css.replace('\n\n', '\n');
done(null, css);
}))
.pipe(header(bannerContent))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log(' js > '.yellow.bold + (destPath + build.filename + '.js').italic.underline);
});
}
function buildBundle(name, callback, type) {
name = name || 'all';
var build = builds[name];
var taskList = [],
depTaskList = [];
// clean files
if(!type && name === 'dist') {
del.sync('./dist/**/*');
} else if(!type && name === 'doc') {
del.sync([
'./docs/js/**/*',
'./docs/css/**/*',
'./docs/fonts/**/*'
]);
}
if(!build) {
if(name === 'all') {
console.log(' ========== BUILD ALL =========='.blue.bold);
var buildList = Object.keys(builds);
buildList.forEach(function(nm) {
build = builds[nm];
if(build && !build.bundles) {
var taskName = 'build:' + nm;
gulp.task(taskName, function(cb) {
buildBundle(nm, cb, type)
});
taskList.push(taskName);
}
});
if(taskList.length) runSequence(taskList, function() {
console.log((' √ Build ' + 'ALL'.bold + ' success! ').green);
callback && callback();
});
return;
} else {
var buildLib = lib[name];
if(buildLib) {
build = {
title: buildLib.name,
dest: 'dist/lib/' + name + '/',
filename: buildLib.filename || ((buildLib.source && buildLib.source !== 'Bootstrap') ? name : ('zui.' + name)),
includes: [name],
source: buildLib.source,
settingDpds: (buildLib.src && buildLib.src.less && buildLib.src.less.length) ? ['setting'] : null,
ignoreBasic: true,
ignoreDpds: buildLib.ignoreDpds !== undefined ? buildLib.ignoreDpds : true
};
} else {
console.log((' Cannot found the build config: ' + name).red);
return false;
}
}
} else if(build.bundles) {
console.log((' === BUILD BUNDLES ' + name.toUpperCase() + ' [' + build.bundles.join(', ') + '] ===').blue.bold);
var bundlesTaskList = [];
build.bundles.forEach(function(bundleName) {
gulp.task('build:' + bundleName, function(cb) {
buildBundle(bundleName, cb, type);
});
bundlesTaskList.push('build:' + bundleName);
});
gulp.task('build:' + name + ':bundles', function(cb) {
runSequence(bundlesTaskList, function() {
console.log((' √ Build BUNDLES ' + name.toUpperCase() + ' [' + build.bundles.map(function(x){return x.bold;}).join(', ') + '] success! ').green);
cb();
});
});
depTaskList.push('build:' + name + ':bundles');
}
if(build.includes && build.includes.indexOf('colorset.js') > -1) {
gulp.task('build:colorset.less2js', function(cb) {
buildBundle('colorset.less2js', cb, 'less');
});
depTaskList.push('build:colorset.less2js');
}
console.log((' --- build ' + name + ' ---').cyan.bold);
var banner = formatBanner({title: build.title || name});
var source = getBuildSource(build),
bannerContent = (build.source && build.source !== 'Bootstrap') ?
'' : banner + (build.bootstrapStatement ? BOOTSTRAP_STATEMENT : '');
if(source.js && source.js.length && (!type || type === 'js')) {
console.log((' + Ready to process ' + source.js.length + ' javascript files.').bold);
source.js.forEach(function(f, idx) {
if(f.indexOf('~/') === 0) {
source.js[idx] = f = 'src/js/' + f.substr(2);
}
if(showFileDetail) console.log((' | ' + f).italic);
});
//ar taskName = 'build:' + name + ':js';
gulp.task('build:' + name + ':js', function() {
var destPath = getBuildPath(build, 'js');
return gulp.src(source.js)
.pipe(concat(build.filename + '.js'))
.pipe(header(bannerContent))
.pipe(chmod(644))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log(' js > '.yellow.bold + (destPath + build.filename + '.js').italic.underline);
})
//.pipe(sourcemaps.init())
.pipe(uglify({preserveComments: 'some'}))
.pipe(rename({
suffix: '.min'
}))
//.pipe(sourcemaps.write())
.pipe(chmod(644))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log(' js > '.yellow.bold + (destPath + build.filename + '.min.js').italic.underline);
});
});
taskList.push('build:' + name + ':js');
}
if(source.less && source.less.length && (!type || type === 'less')) {
var lessFileContent = '// \n// ' + build.title + '\n// Build config: ' + name + '\n//\n// This file generated by ZUI builder automatically at ' + today.toString() + '.\n//\n\n';
console.log((' + Ready to process ' + source.less.length + ' less files.').bold);
source.less.forEach(function(f, idx) {
if(f.indexOf('~/') === 0) {
source.less[idx] = f = 'src/less/' + f.substr(2);
}
if(isFileExist(f)) {
lessFileContent += '@import "';
lessFileContent += '../../' + f;
lessFileContent += '";\n';
if(showFileDetail) console.log((' | ' + f).italic);
} else {
lessFileContent += '// @import "';
lessFileContent += '../../' + f;
lessFileContent += '" // FILE NOT FOUND;\n';
if(showFileDetail) console.log((' - ' + f + ' [NOT FOUND]').red.italic);
}
});
gulp.task('build:' + name + ':less', function() {
var buildSourceFilePath = './build/less/' + build.filename + '.less';
var destPath = getBuildPath(build, 'css');
mkdirp.sync('./build/less/');
fs.writeFileSync(buildSourceFilePath, lessFileContent);
if(name === 'colorset.less2js') {
return gulpBuildColorsetJS(build, buildSourceFilePath, bannerContent);
}
return gulp.src(buildSourceFilePath)
.pipe(less())
.pipe(autoprefixer({
browsers: ["Android 2.3",
"Android >= 4",
"Chrome >= 20",
"Firefox >= 24",
"Explorer >= 8",
"iOS >= 6",
"Opera >= 12",
"Safari >= 6"],
cascade: true
}))
.pipe(csscomb())
.pipe(header(bannerContent))
.pipe(chmod(644))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log(' css > '.yellow.bold + (destPath + build.filename + '.css').italic.underline);
})
//.pipe(sourcemaps.init())
.pipe(cssmin({
compatibility: 'ie8',
keepSpecialComments: '*',
sourceMap: true,
advanced: false
}))
.pipe(rename({
suffix: '.min'
}))
//.pipe(sourcemaps.write())
.pipe(chmod(644))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log(' css > '.yellow.bold + (destPath + build.filename + '.min.css').italic.underline);
});
});
taskList.push('build:' + name + ':less');
}
if(source.resource && source.resource.length && (!type || type === 'resource')) {
console.log((' + Ready to process ' + source.resource.length + ' resource files.').bold);
var destPath = getBuildPath(build, '');
source.resource.forEach(function(f, idx) {
if(f.indexOf('~/') === 0) {
source.resource[idx] = f = 'src//' + f.substr(2);
}
if(showFileDetail) console.log((' | [' + idx + '] ' + f).italic);
gulp.task('build:' + name + ':resource:' + idx, function() {
var sourceConfig = getSourceConfig(f);
return gulp.src(sourceConfig.src, {
base: sourceConfig.base
})
.pipe(chmod(644))
.pipe(gulp.dest(destPath))
.on('end', function() {
console.log('resource > '.yellow.bold + (destPath + sourceConfig.file).italic.underline);
});
});
taskList.push('build:' + name + ':resource:' + idx);
});
}
if(taskList.length || depTaskList.length) {
var completeCallback = function() {
console.log((' √ Build ' + name.bold + ' success! ').green);
callback && callback();
};
if(taskList.length) {
if(depTaskList.length) {
runSequence(depTaskList, taskList, completeCallback);
} else {
runSequence(taskList, completeCallback);
}
} else {
runSequence(depTaskList, completeCallback);
}
} else {
console.log((' No source files for build: ' + name).red);
callback && callback();
}
}
gulp.task('build', function(callback) {
var name = process.argv[3] || 'dist';
if(name && name[0] === '-') name = name.substr(1);
if(name === 'lib') name = 'seperate';
var type = process.argv.length > 4 ? process.argv[4] : false;
if(type && type[0] === '-') type = type.substr(1);
console.log(' BEGIN >> ' + (' Build ' + name.bold + ' ').inverse);
buildBundle(name, function() {
console.log(' END >> ' + (' Build ' + name.bold + ' completed :)').green.inverse);
}, type);
});
function startWatchSrc(name) {
if(name === 'lib') name = 'seperate';
gulp.watch(["./src/less/**/*"], function(event) {
buildBundle(name, function() {
console.log(' √ '.green + (' WATCH ' + name.bold + ' COMPLETED. ').yellow.inverse);
}, 'less');
});
gulp.watch(["./src/js/**/*"], function(event) {
if(event.path && (event.path.lastIndexOf('src/js/colorset.js') > -1) || event.path.lastIndexOf('src\\js\\colorset.js') > -1) return;
buildBundle(name, function() {
console.log(' √ '.green + (' WATCH ' + name.bold + ' COMPLETED. ').yellow.inverse);
}, 'js');
});
gulp.watch(["./src/fonts/**/*"], function(event) {
buildBundle(name, function() {
console.log(' √ '.green + (' WATCH ' + name.bold + ' COMPLETED. ').yellow.inverse);
}, 'resource');
});
}
gulp.task('watch', function(callback) {
var name = process.argv[3] || 'dist';
if(name && name[0] === '-') name = name.substr(1);
startWatchSrc(name);
});
['dist', 'doc', 'theme', 'lib'].forEach(function(name) {
var depsTasks = (name == 'dist' || name == 'doc') ? ['minJSON'] : [];
gulp.task(name, depsTasks, function(callback) {
console.log(' BEGIN >> ' + (' Build ' + name.bold + ' ').inverse);
buildBundle(name == 'lib' ? 'seperate' : name, function() {
console.log(' END >> ' + (' Build ' + name.bold + ' completed. ').green.inverse);
callback();
});
});
gulp.task('watch:' + name, function() {
startWatchSrc(name);
});
});
gulp.task('minJSON', function(cb) {
gulp.src(['./docs/index.json', './docs/icons.json'])
.pipe(jsonminify())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('./docs/'));
gulp.src(['zui.json'])
.pipe(jsonminify())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('./docs/'));
cb();
});
gulp.task('prettify:js', function() {
return gulp.src('./src/js/**/*')
.pipe(prettify({
logSuccess: true,
config: './.jsbeautifyrc',
mode: 'VERIFY_AND_WRITE'
}))
.pipe(gulp.dest('./src/js/'));
});
gulp.task('prettify', ['prettify:js']);
gulp.task('default', function() {
buildBundle('all');
});
// Init custom gulp tasks
if(isFileExist("gulpfile.custom.js")) {
require("./gulpfile.custom.js")(gulp, {
chmod: chmod,
less: less,
cssmin: cssmin,
csscomb: csscomb,
autoprefixer: autoprefixer,
concat: concat,
header: header,
uglify: uglify,
rename: rename,
change: change,
sourcemaps: sourcemaps,
prettify: prettify,
buildBundle: buildBundle,
zui: zui,
pkg: pkg,
del: del,
mkdirp: mkdirp,
runSequence: runSequence
});
}