DepBuilder.js
6.45 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
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
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _react() {
const data = _interopRequireDefault(require("react"));
_react = function _react() {
return data;
};
return data;
}
function _utils() {
const data = require("@umijs/utils");
_utils = function _utils() {
return data;
};
return data;
}
function _assert() {
const data = _interopRequireDefault(require("assert"));
_assert = function _assert() {
return data;
};
return data;
}
function _fs() {
const data = require("fs");
_fs = function _fs() {
return data;
};
return data;
}
function _path() {
const data = require("path");
_path = function _path() {
return data;
};
return data;
}
function _webpack() {
const data = _interopRequireDefault(require("webpack"));
_webpack = function _webpack() {
return data;
};
return data;
}
var _buildDevUtils = require("../../commands/buildDevUtils");
var _constants = require("./constants");
var _getDepVersion = require("./getDepVersion");
var _mfsu = require("./mfsu");
var _modifyChunkNamePlugin = _interopRequireDefault(require("./modifyChunkNamePlugin"));
var _utils2 = require("./utils");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
const debug = (0, _utils().createDebug)('umi:mfsu:DepBuilder');
const normalizeDepPath = (dep, cwd) => {
return dep.replace(cwd, _constants.CWD).replace(/\//g, '_').replace(/\:/g, '_');
};
class DepBuilder {
constructor(opts) {
this.api = void 0;
this.mode = void 0;
this.compiler = void 0;
this.tmpDir = void 0;
this.api = opts.api;
this.mode = opts.mode;
this.tmpDir = opts.tmpDir || (0, _mfsu.getMfsuPath)(this.api, {
mode: opts.mode
});
this.compiler = null;
}
build(opts) {
var _this = this;
return _asyncToGenerator(function* () {
yield _this.writeMFFiles(opts.deps, opts.webpackAlias);
if (!_this.compiler) {
// start webpack
const _yield$getBundleAndCo = yield (0, _buildDevUtils.getBundleAndConfigs)({
api: _this.api,
mfsu: true
}),
bundleConfigs = _yield$getBundleAndCo.bundleConfigs,
bundler = _yield$getBundleAndCo.bundler;
(0, _assert().default)(bundleConfigs.length && bundleConfigs[0], `[MFSU] 预编译找不到 Webpack 配置`);
let mfConfig = _utils().lodash.cloneDeep(bundleConfigs[0]);
mfConfig = _this.updateWebpackConfig(mfConfig, opts.deps);
const watch = _this.mode === 'development';
const _yield$bundler$build = yield bundler.build({
bundleConfigs: [mfConfig],
// TODO: 支持 watch 模式
// 因为 exposes 不支持动态变更,所以暂不能使用 webpack 的 watch 模式
watch: false,
onBuildComplete: opts.onBuildComplete
}),
compiler = _yield$bundler$build.compiler; // TODO: 支持 watch 模式
// this.compiler = compiler;
}
})();
}
writeMFFiles(deps, webpackAlias) {
var _this2 = this;
return _asyncToGenerator(function* () {
// TODO:何时清理?还是不需要清理?加 --force 时清理?
// 清除原先的目录
// readdirSync(this.tmpDir).forEach((dir) => {
// // 不删除 diff 文件
// if (dir !== DEP_INFO_CACHE_FILE) {
// unlinkSync(join(this.tmpDir, dir));
// }
// });
for (var _i = 0, _Object$keys = Object.keys(deps); _i < _Object$keys.length; _i++) {
let dep = _Object$keys[_i];
try {
const requireFrom = (0, _getDepVersion.getAliasedDep)({
dep,
webpackAlias
});
(0, _fs().writeFileSync)((0, _utils().winPath)((0, _path().join)(_this2.tmpDir, normalizeDepPath(`${_constants.MF_VA_PREFIX}${dep}.js`, _this2.api.cwd))), [yield (0, _utils2.figureOutExport)(_this2.api.cwd, (0, _utils().winPath)(requireFrom)), ''].join('\n').trimLeft(), 'utf-8');
} catch (err) {
const e = new Error(`[MFSU] Build virtual application failed since ${err.message}.`);
e.stack = err.stack;
throw e;
}
}
const entryFile = '"😛"';
(0, _fs().writeFileSync)((0, _path().join)(_this2.tmpDir, './index.js'), entryFile);
})();
}
updateWebpackConfig(mfConfig, deps) {
mfConfig.stats = 'none';
mfConfig.entry = (0, _path().join)(this.tmpDir, 'index.js');
mfConfig.output.path = this.tmpDir; // disable devtool
mfConfig.devtool = false; // @ts-ignore
if (mfConfig.cache && mfConfig.cache.cacheDirectory) {
// @ts-ignore
mfConfig.cache.cacheDirectory = (0, _path().join)(this.tmpDir, '.webpackFSCache');
}
debug('config.cache', mfConfig.cache);
const remoteEntryFilename = _constants.MF_VA_PREFIX + 'remoteEntry.js';
const exposes = {};
Object.keys(deps).forEach(dep => {
exposes[`./${dep}`.replace(this.api.cwd, _constants.CWD)] = (0, _path().join)(this.tmpDir, normalizeDepPath(`${_constants.MF_VA_PREFIX}${dep}.js`, this.api.cwd));
});
mfConfig.plugins = mfConfig.plugins || []; // 修改 chunk 名
mfConfig.plugins.push(new _modifyChunkNamePlugin.default()); // mf 插件
mfConfig.plugins.push( //@ts-ignore
new (_webpack().default.container.ModuleFederationPlugin)({
name: _constants.MF_NAME,
filename: remoteEntryFilename,
exposes
})); // 因为 webpack5 不会自动注入 node-libs-browser,因此手动操作一下
// 包已经在 bundle-webpack/getConfig 中通过 fallback 注入,在此仅针对特殊包制定指向
// TODO: 确认是否有必要
mfConfig.plugins.push( // @ts-ignore
new (_webpack().default.ProvidePlugin)({
Buffer: ['buffer', 'Buffer']
}));
return mfConfig;
}
}
exports.default = DepBuilder;