命令介绍:
1.分模块打包
node .\node_modules\@angular\cli\bin\ng build --modules module1,module2,module3,home
config.js内容:
module.exports = {
frame: 'ng',
routePath: './src/routes/index.ts', //根路由文件路径
modules: {
module1: [{
modulePath: '../modules/module1/module1.module',//模块组包含的模块
routePath: 'module1',
// excludeRules: 'common',
className: 'Module1Module'
}],
module2: [{
modulePath: '../modules/module2/module2.module',//模块组包含的模块
routePath: 'module2',
className: 'Module2Module'
}],
module3: [{
modulePath: '../modules/module3/module3.module',//模块组包含的模块
routePath: 'module3',
className: 'Module3Module'
}],
home: [ //模块组名称
{
modulePath: '../modules/module1/module1.module',//模块组包含的模块
routePath: 'module1',
excludeRules: 'common',
className: 'Module1Module'
},
{
modulePath: '../modules/module2/module2.module',//模块组包含的模块
routePath: 'module2',
className: 'Module2Module'
}
],
other: [
{
modulePath: '../modules/module3/module3.module',//模块组包含的模块
routePath: 'module3',
className: 'Module3Module'
}
]
},
rules: {
common: /[\\\/]appCommon[\/\\]/,
module: /[\\\/]node_modules[\/\\]/
}
}
运行后动态生成文件'./src/routes/index.ts'
import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: 'module1',
loadChildren: () => import('../modules/module1/module1.module').then(m => m.Module1Module)
},
{
path: 'module2',
loadChildren: () => import('../modules/module2/module2.module').then(m => m.Module2Module)
},
{
path: 'module3',
loadChildren: () => import('../modules/module3/module3.module').then(m => m.Module3Module)
},
];
输出结果
node .\node_modules\@angular\cli\bin\ng build --modules module1,module2
运行后动态生成文件'./src/routes/index.ts'
import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: 'module1',
loadChildren: () => import('../modules/module1/module1.module').then(m => m.Module1Module)
},
{
path: 'module2',
loadChildren: () => import('../modules/module2/module2.module').then(m => m.Module2Module)
},
];
输出结果:
2.选择需要的模块打包
node .\node_modules\@angular\cli\bin\ng build --include-modules module1,module2
输出结果
3.去重
config.js内容:
module.exports = {
frame: 'ng',
routePath: './src/routes/index.ts', //根路由文件路径
modules: {
module1: [{
modulePath: '../modules/module1/module1.module',//模块组包含的模块
routePath: 'module1',
excludeRules: 'common',// 去重设置
className: 'Module1Module'
}],
module2: [{
modulePath: '../modules/module2/module2.module',//模块组包含的模块
routePath: 'module2',
className: 'Module2Module'
}],
module3: [{
modulePath: '../modules/module3/module3.module',//模块组包含的模块
routePath: 'module3',
className: 'Module3Module'
}],
home: [ //模块组名称
{
modulePath: '../modules/module1/module1.module',//模块组包含的模块
routePath: 'module1',
excludeRules: 'common',
className: 'Module1Module'
},
{
modulePath: '../modules/module2/module2.module',//模块组包含的模块
routePath: 'module2',
className: 'Module2Module'
}
],
other: [
{
modulePath: '../modules/module3/module3.module',//模块组包含的模块
routePath: 'module3',
className: 'Module3Module'
}
]
},
rules: {
common: /[\\\/]appCommon[\/\\]/,
module: /[\\\/]node_modules[\/\\]/
}
}
node .\node_modules\@angular\cli\bin\ng build --modules module1,module2
输出结果
node .\node_modules\@angular\cli\bin\ng build --modules module1,module2 --exclude-modules common
输出结果:
分模块打包:
1.让各模块业务代码分别打包到不同的chunk中,必须与公用代码分离
2.在打包文件输出文件夹里分别为每一个模块创建一个新的文件夹
3.区分出打包文件输出后公用代码块和业务模块代码块的文件名称分别是什么
4.复制公用代码块到每一个模块文件夹中
5.复制业务模块代码块到对应的文件夹中
6.删除模块文件夹外的代码块文件
具体实现:
1.让各模块业务代码分别打包到不同的chunk中,必须与公用代码分离
webeck在打包的时候,会对动态加载的模块生成单独的chunk,所以只要在代码中对业务模块采用动态加载的方式即可达到想要的效果。而框架的路由系统的模块懒加载功能便是通过动态加载
功能来实现的,所以只要在配置路由的时候把模块加载模式配置成懒加载即可
为了实现该功能,根路由配置文件需要在打包的时候,根据config文件的配置和打包命令的输入参数动态生成
config文件内容:
module.exports = {
frame: 'ng',
routePath: './src/routes/index.ts', //根路由文件路径
modules: {
home: [ //模块组名称
{
modulePath: '../modules/Home/home.module',//模块组包含的模块
routePath: 'home',
exclude:[/[\\\/]fitsCommon[\\\/]/],
className: 'HomeModule'
},
{
routePath: 'other', //模块组包含的模块
modulePath: '../modules/Other/other.module',
className: 'OtherModule'
}
],
other: [
{
routePath: 'other',
modulePath: '../modules/Other/other.module',
className: 'OtherModule'
}
]
}
}
2.在打包文件输出文件夹里分别为每一个模块创建一个新的文件夹
使用node文件系统根据配置文件和打包命令输入参数生成
3.区分出打包文件输出后公用代码块和业务模块代码块的文件名称分别是什么
编写webpack 插件,监听webpack打包的afterEmit钩子回调,根据回调函数传入的compilation实例判断,具体看代码:
webpackConfig.plugins.push({
apply: function(compiler) {
let dirs = [], commonFiles, outputPath, assets;
compiler.hooks.afterEmit.tapPromise('SplitModulePlugin', (compilation) => {
outputPath = compilation.outputOptions.path; // 打包后文件的输入路径
let common = assets = Object.assign({}, compilation.assets); // compilation.assets里包含所有输出文件的信息
for(let moduleName of Object.keys(modules)) { //modules 是我们需要的所有模块的信息
let dir = {name: moduleName, files: [], exclude: []};
mds = modules[moduleName];
mds.forEach(md => {
compilation.chunks.find(chunk => {
Array.from(chunk._modules).forEach(normalModule => {
if (normalModule.rawRequest && normalModule.rawRequest === md.modulePath) {
dir.files.push(...chunk.files); // 找到业务模块对应的chunk, chunk.files为打包后业务代码块的文件名称
chunk.files.forEach(file => common[file] = false) // 即为业务代码块也就不是公用代码块
}
if (md.exclude && md.exclude.find(e => e.test(normalModule.request))) {
dir.exclude.push(...chunk.files);
}
})
})
})
dirs.push(dir);
}
commonFiles = Array.from(Object.keys(common)).filter(key => common[key]);
dirs.forEach(dir => {
let targetPath = path.resolve(outputPath, dir.name);
fs.mkdirSync(targetPath);
dir.files.concat(commonFiles.filter(file => !dir.exclude.includes(file))).
forEach(file => copyFile(path.resolve(outputPath, file), path.resolve(targetPath, file)));
})
Array.from(Object.keys(assets)).forEach(file => fs.rmSync(path.resolve(outputPath, file)));
return Promise.resolve(compilation);
})
}
})
优点:实现简单
缺点: 需要强制配置懒加载,动态生成route配置文件有失灵活
todo: 支持非懒加载路由配置实现
去重:
1.修改webpack配置保证待去重模块作为单独的chunk被打包
2.确定待去重模块打包后代码块文件名
3.把相应文件删除
优点:实现简单
缺点:虽然是不需要的文件,但实质上还是被编译打包并生成文件,只是生成后再删除, 有 bug
todo:看能否实现让模块从一开始就不被编译打包,从而达到节省打包时间的目的