-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
85 lines (73 loc) · 2.53 KB
/
index.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
/**
* @file 静态资源打包插件,支持 amd 模块打包
* @author sparklewhy@gmail.com
*/
var _ = fis.util;
var htmlParser = require('./lib/html');
var Context = require('./lib/context');
var packUtil = require('./lib/pack');
/**
* 初始化 页面打包信息
*
* @inner
* @param {Context} context 打包上下文
* @param {Object} packOpts 打包选项
* @param {Object} settings 打包设置选项
*/
function initPackInfo(context, packOpts, settings) {
// 初始化页面打包信息
packUtil.packPage(context, packOpts);
// 初始化指定的文件打包信息
var bundles = settings.bundles || [];
bundles.forEach(function (packItem) {
var options = _.merge({}, packItem);
var preLoad = packItem.preLoad;
preLoad === true && (preLoad = packOpts.pageFiles);
options.preLoad = preLoad;
options.host = null;
options.rawCombines = null;
context.addToPackItem(packUtil.createPackItem(options, context));
});
}
/**
* 打包插件入口
*
* @param {Object} ret 处理的资源信息全集
* @param {Object} pack 打包信息
* @param {Object} settings 设置选项
* @param {Object} opt 全局选项
*/
module.exports = exports = function (ret, pack, settings, opt) {
try {
var context = new Context(ret);
var pagePackOpts = _.assign({}, htmlParser.getDefaultOption(), settings.page);
pagePackOpts.pageFiles = context.findFileByPattern(pagePackOpts.files || '*.html');
pagePackOpts.pageFiles.forEach(function (file) {
htmlParser.initPagePlaceholder(file, context, pagePackOpts);
});
if (typeof settings.preprocessor === 'function') {
settings.preprocessor(ret, context);
}
// 初始化打包信息
initPackInfo(context, pagePackOpts, settings);
// 初始化打包的顺序
var packedFiles = packUtil.orderPackItems(context.toPackItems);
// 初始化打包的文件
packedFiles.forEach(function (item) {
packUtil.initPackFiles(context, item);
});
packUtil.extractVendorFiles(
packedFiles, context, pagePackOpts
);
// 开始真正的打包逻辑
packedFiles = context.toPackItems.map(function (item) {
return packUtil.packStaticFiles(context, item);
}).filter(function (item) {
return item;
});
packUtil.outputPackInfo(packedFiles, context, pagePackOpts, settings);
}
catch (ex) {
fis.log.error(ex.stack);
}
};