最近要做一个js解析markdown的项目,所以当然想到了ant design,不过ant design内部又使用了atool-build脚手架,所以决定好好研究一下。如果有不对的地方还烦请指正。不过个人建议阅读github版本,因为最近也在不断的学习这部分内容,可能会随时修改,所以可能存在没有及时同步的问题。
atool-build本身是基于webpack1的,如果你使用的是webpack2,可以试试wcf。这是在atool-build基础上开发的,集成了webpack-dev-server(启动了webpack-dev-server打包), webpack watch(webpack自身的watch模式,监听文件变化重新打包), webpack(打包一次然后退出)三种打包方式。因为webpack2更新后我们下面描述的很多plugin都已经移除而内置了,同时很多配置项都已经失效了,以前出现的问题都已经解决了。所以我还是强烈建议更新到webpack2的。
废话不多说,请看下面内容:
atool-build脚手架只是对webpack进行了简单的封装。
首先,webpack/babel/TypeScript那些基本配置信息都有了默认信息,并内置了很多默认的loader
来处理文件;然后,他是自己调用compiler.run
方法开始编译的,并通过compiler.watch来监听文件的变化,生产build-bundle.json表示编译的信息;
然后,里面通过一个hack来解决extract-webpack-text-plugin打印log的问题;Babel的缓存目录会使用操作系统默认的缓存目录来完成,使用os模块的tmpdir方法;其中devtool采用的是如下的方式加载:
js
webpack --devtool source-map
(1)如果在 package.json 中 browser 没有设置,则设置 child_process, cluster, dgram, dns, fs, module, net, readline, repl, tls 为 empty
!
(2)对于自定义添加的 loader,plugin等依赖,需要在项目文件夹中npm install 这些依赖。但不需要再安装 webpack 依赖,因为可以通过 require(‘atool-build/lib/webpack’) 得到;
下面是atool-build给出的那些可以允许配置信息:
(1): –verbose:是否在shell中传入verbose参数(表示是否输出过程日志)
//如果没有指定verbose
if (!args.verbose) {
compiler.plugin('done', (stats) => {
stats.stats.forEach((stat) => {
stat.compilation.children = stat.compilation.children.filter((child) => {
return child.name !== 'extract-text-webpack-plugin';
});
});
});
}
如果没有传入verbose,那么表示不允许输出日志。至于为什么是移除’extract-text-webpack-plugin’可以参见这个hack
(2):–json 是否生成bundle.json文件
if (args.json) {
const filename = typeof args.json === 'boolean' ? 'build-bundle.json' : args.json;
const jsonPath = join(fileOutputPath, filename);
writeFileSync(jsonPath, JSON.stringify(stats.toJson()), 'utf-8');
console.log(`Generate Json File: ${jsonPath}`);
}
表示是否在shell中配置了json参数,在doneHandle,也就是说每次修改都会调用这个方法,然后写一个默认为build-bundle.json文件:
(3)-o, –output-path 指定构建后的输出路径。
处理如下:
//对应于webpack的output.path选项
if (args.outputPath) {
webpackConfig.output.path = args.outputPath;
}
(4)-w, –watch [delpay] 是否监控文件变化,默认为不监控。内部处理如下:
if (args.watch) {
compiler.watch(args.watch || 200, doneHandler);
//启动compiler.watch监听文件变化
} else {
compiler.run(doneHandler);
}
也用于监控编译的过程
if (args.watch) {
webpackConfig.forEach(config => {
config.plugins.push(
new ProgressPlugin((percentage, msg) => {
const stream = process.stderr;
if (stream.isTTY && percentage < 0.71) {
stream.cursorTo(0);
stream.write(`�� ${chalk.magenta(msg)}`);
stream.clearLine(1);
} else if (percentage === 1) {
console.log(chalk.green('\nwebpack: bundle build is now finished.'));
}
})
);
});
}
(5)–public-path
具体可以查看该文档,内部处理如下:
//对应于webpack的虚拟路径
if (args.publicPath) {
webpackConfig.output.publicPath = args.publicPath;
}
(6)–no-compress 不压缩代码。
if (args.compress) {//配置为--no-compress表示不压缩
webpackConfig.UglifyJsPluginConfig = {
output: {
ascii_only: true,
},
compress: {
warnings: false,
},
};
webpackConfig.plugins = [...webpackConfig.plugins,
new webpack.optimize.UglifyJsPlugin(webpackConfig.UglifyJsPluginConfig),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'production'),
}),
];
} else {
//https://cnodejs.org/topic/5785b3ef3b501f7054982f69
if (process.env.NODE_ENV) {
webpackConfig.plugins = [...webpackConfig.plugins,
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
];
}
}
如果压缩代码,那么我们添加UglifyJsPlugin。
(7)–config [userConfigFile] 指定用户配置文件。默认为根目录下的 webpack.config.js文件。这个配置文件不是必须的。处理方式如下:
if (typeof args.config === 'function') {
webpackConfig = args.config(webpackConfig) || webpackConfig;
} else {
webpackConfig = mergeCustomConfig(webpackConfig, resolve(args.cwd, args.config || 'webpack.config.js'));
}
也就说,如果config参数是一个函数,那么直接调用这个函数,否则获取路径并调用这个路径引入的文件的默认导出函数,传入参数为webpackConfig,下面是内置的mergeCustomConfig内部逻辑:
export default function mergeCustomConfig(webpackConfig, customConfigPath) {
if (!existsSync(customConfigPath)) {
return webpackConfig;
}
const customConfig = require(customConfigPath);
if (typeof customConfig === 'function') {
return customConfig(webpackConfig, ...[...arguments].slice(2));
}
throw new Error(`Return of ${customConfigPath} must be a function.`);
}
注意,也就说如果我们传入的是config为file,那么这个config必须导出的是一个函数!但是在wcf中我们采用了webpack-merge来合并配置项,更加灵活多变
(8)–devtool 生成 sourcemap 的方法,默认为空,这个参数和 webpack 的配置一致。表示sourceMap的等级。
(9)–hash 使用hash模式的构建, 并生成映射表map.json。内部的处理如下:
//如果指定了hash,那么我们的生成的文件名称为[name]-[chunkhash]这种类型
if (args.hash) {
const pkg = require(join(args.cwd, 'package.json'));
webpackConfig.output.filename = webpackConfig.output.chunkFilename = '[name]-[chunkhash].js';
webpackConfig.plugins = [...webpackConfig.plugins,
require('map-json-webpack-plugin')({
assetsPath: pkg.name,//项目名称,会放置在项目根路径
cache,
}),
];
}
也就是说如果指定了hash,那么我们必须修改输出的文件名,即webpackConfig.output.filename 和webpackConfig.output.chunkFilename并添加hash。而且这里使用的是chunkhash,同时这里使用了map-json-webpack-plugin这个插件生成map.json映射文件。
(1)ProgressPlugin学习
config.plugins.push(new ProgressPlugin(percentage,msg)=>{
const stream=process.stderr;
if(stream.isTTY&&percentage<0.71){
stream.cursorTo(0);
stream.write(`�� ${chalk.magenta(msg)}`);
stream.clearLine(1);
}else if(percentate==1){
console.log(chalk.green('webpack: bundle build is now finished.'));
}
})
该插件表示编译的进度。插件详见官方网站阅读
(2)NoErrorsPlugin
表示如果编译的时候有错误,那么我们跳过emit阶段,因此包含错误信息的资源都不会经过emit阶段也就是没有文件产生。这时候所有资源的emitted都是false。如果你使用CLI,那么当你使用这个插件的时候不会退出并产生一个error code,如果你想要CLI退出,那么使用bail选项。
(3)DefinePlugin
表示允许你定义全局变量,可以用于在编译阶段和开发阶段进行不同的处理。用法如下:
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
(4)DedupePlugin
查找相等或者相似的文件并从输出去剔除。在watch模式下不要使用,要在production下使用。
export default function mergeCustomConfig(webpackConfig, customConfigPath) {
if (!existsSync(customConfigPath)) {
return webpackConfig;
}
const customConfig = require(customConfigPath);
//必须返回函数,也就是我们通过shell配置的args.config必须是返回一个函数!
if (typeof customConfig === 'function') {
return customConfig(webpackConfig, ...[...arguments].slice(2));
}
throw new Error(`Return of ${customConfigPath} must be a function.`);
}
export default function build(args, callback) {
// Get config.
let webpackConfig = getWebpackConfig(args, {});
//这里是把shell传入的options和默认的option进行配置后得到的最终options
webpackConfig = Array.isArray(webpackConfig) ? webpackConfig : [webpackConfig];
let fileOutputPath;
webpackConfig.forEach(config => {
fileOutputPath = config.output.path;
});
//获取最终的config.output.path属性表示最终的输出路径
if (args.watch) {
webpackConfig.forEach(config => {
config.plugins.push(
new ProgressPlugin((percentage, msg) => {
const stream = process.stderr;
if (stream.isTTY && percentage < 0.71) {
stream.cursorTo(0);
stream.write(`�� ${chalk.magenta(msg)}`);
stream.clearLine(1);
} else if (percentage === 1) {
console.log(chalk.green('\nwebpack: bundle build is now finished.'));
}
})
);
});
}
//如果配置了watch,表示要监听,我们加入ProgressPlugin
function doneHandler(err, stats) {
//shell中配置了json参数,那么在fileOutputPath = config.output.path;也就是config.output.path
//中输出我们的json文件
if (args.json) {
const filename = typeof args.json === 'boolean' ? 'build-bundle.json' : args.json;
const jsonPath = join(fileOutputPath, filename);
writeFileSync(jsonPath, JSON.stringify(stats.toJson()), 'utf-8');
console.log(`Generate Json File: ${jsonPath}`);
}
//如果出错,那么退出码是1
const { errors } = stats.toJson();
if (errors && errors.length) {
process.on('exit', () => {
process.exit(1);
});
}
// if watch enabled only stats.hasErrors would log info
// otherwise would always log info
if (!args.watch || stats.hasErrors()) {
const buildInfo = stats.toString({
colors: true,
children: true,//添加子模块的信息,https://github.com/webpack/extract-text-webpack-plugin/issues/35
chunks: !!args.verbose,
modules: !!args.verbose,
chunkModules: !!args.verbose,
hash: !!args.verbose,//如果verbose为true表示有日志,那么我们会输出这部分内容
version: !!args.verbose,
});
if (stats.hasErrors()) {
console.error(buildInfo);
} else {
console.log(buildInfo);
}
}
if (err) {
process.on('exit', () => {
process.exit(1);
});
console.error(err);
}
if (callback) {
callback(err);
}
}
// Run compiler.
//webpack返回的是一个Compiler实例对象
const compiler = webpack(webpackConfig);
// Hack: remove extract-text-webpack-plugin log
//verbose: 是否输出过程日志,这里是取消'extract-text-webpack-plugin'所有的日志信息
if (!args.verbose) {
compiler.plugin('done', (stats) => {
stats.stats.forEach((stat) => {
//compilation.children是他所有依赖的plugin信息
stat.compilation.children = stat.compilation.children.filter((child) => {
return child.name !== 'extract-text-webpack-plugin';
});
});
});
}
//调用compiler对象的核心方法watch和run方法
if (args.watch) {
compiler.watch(args.watch || 200, doneHandler);
} else {
compiler.run(doneHandler);
}
}
上面的代码是很容易看懂的,其实我们最重要的代码就是如下的内容:
function doneHandler(err, stats) {
if (args.json) {
const filename = typeof args.json === 'boolean' ? 'build-bundle.json' : args.json;
const jsonPath = join(fileOutputPath, filename);
writeFileSync(jsonPath, JSON.stringify(stats.toJson()), 'utf-8');
console.log(`Generate Json File: ${jsonPath}`);
}
//如果出错,那么退出码是1
const { errors } = stats.toJson();
if (errors && errors.length) {
process.on('exit', () => {
process.exit(1);
});
}
// if watch enabled only stats.hasErrors would log info
// otherwise would always log info
if (!args.watch || stats.hasErrors()) {
const buildInfo = stats.toString({
colors: true,
children: true,//添加子模块的信息,https://github.com/webpack/extract-text-webpack-plugin/issues/35
chunks: !!args.verbose,
modules: !!args.verbose,
chunkModules: !!args.verbose,
hash: !!args.verbose,//如果verbose为true表示有日志,那么我们会输出这部分内容
version: !!args.verbose,
});
if (stats.hasErrors()) {
console.error(buildInfo);
} else {
console.log(buildInfo);
}
}
if (err) {
process.on('exit', () => {
process.exit(1);
});
console.error(err);
}
if (callback) {
callback(err);
}
}
因为我们调用compiler.watch方法,在webpack中,其会调用Watching对象的watch方法监听文件的变化,每次变化的时候我们只是重新生成我们的’build-bundle.json’文件表示本次编译的信息!而且在webpack的watch的回调函数,也就是doneHandler中每次都会传入Stats对象,如果你还不知道可以查看下面这个文章
export default function ts() {
return {
target: 'es6',
jsx: 'preserve',
moduleResolution: 'node',
declaration: false,
sourceMap: true,
};
}
export default function babel() {
return {
cacheDirectory: tmpdir(),//临时文件存放位置
presets: [//presets字段设定转码规则
require.resolve('babel-preset-es2015-ie'),
require.resolve('babel-preset-react'),
require.resolve('babel-preset-stage-0'),
],
plugins: [
require.resolve('babel-plugin-add-module-exports'),
require.resolve('babel-plugin-transform-decorators-legacy'),
],
};
}
上面tmpdir的作用如下:
The os.tmpdir() method returns a string specifying the operating system’s default directory for temporary files.
直接上源码部分,再分开分析下:
export default function getWebpackCommonConfig(args) {
const pkgPath = join(args.cwd, 'package.json');
const pkg = existsSync(pkgPath) ? require(pkgPath) : {};
const jsFileName = args.hash ? '[name]-[chunkhash].js' : '[name].js';
const cssFileName = args.hash ? '[name]-[chunkhash].css' : '[name].css';
const commonName = args.hash ? 'common-[chunkhash].js' : 'common.js';
//如果传入hash,那么输出文件名要修改
const babelQuery = getBabelCommonConfig();
const tsQuery = getTSCommonConfig();
//获取TypeScript配置
tsQuery.declaration = false;
let theme = {};
if (pkg.theme && typeof(pkg.theme) === 'string') {
let cfgPath = pkg.theme;
// relative path
if (cfgPath.charAt(0) === '.') {
cfgPath = resolve(args.cwd, cfgPath);
}
const getThemeConfig = require(cfgPath);
theme = getThemeConfig();
} else if (pkg.theme && typeof(pkg.theme) === 'object') {
theme = pkg.theme;
}
const emptyBuildins = [
'child_process',
'cluster',
'dgram',
'dns',
'fs',
'module',
'net',
'readline',
'repl',
'tls',
];
const browser = pkg.browser || {};
const node = emptyBuildins.reduce((obj, name) => {
//如果browser里面没有这个模块,那么我们会把obj对象上这个模块的信息设置为'empty'字符串
if (!(name in browser)) {
return { ...obj, ...{ [name]: 'empty' } };
}
return obj;
}, {});
return {
babel: babelQuery,
ts: {
transpileOnly: true,
compilerOptions: tsQuery,
},
output: {
path: join(process.cwd(), './dist/'),
filename: jsFileName,
chunkFilename: jsFileName,
},
devtool: args.devtool,//source-map
resolve: {
modulesDirectories: ['node_modules', join(__dirname, '../node_modules')],
//本层级的node_modules和上一级node_modules
extensions: ['', '.web.tsx', '.web.ts', '.web.jsx', '.web.js', '.ts', '.tsx', '.js', '.jsx', '.json'],
//扩展名
},
resolveLoader: {
modulesDirectories: ['node_modules', join(__dirname, '../node_modules')],
},
entry: pkg.entry,
//package.json中配置的entry对象
node,
module: {
noParse: [/moment.js/],//不解析moment.js
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: require.resolve('babel-loader'),
query: babelQuery,
},
{
test: /\.jsx$/,
loader: require.resolve('babel-loader'),
query: babelQuery,
},
{
test: /\.tsx?$/,
loaders: [require.resolve('babel-loader'), require.resolve('ts-loader')],
},
{
test(filePath) {
return /\.css$/.test(filePath) && !/\.module\.css$/.test(filePath);
},
loader: ExtractTextPlugin.extract(
`${require.resolve('css-loader')}` +
`?sourceMap&-restructuring&-autoprefixer!${require.resolve('postcss-loader')}`
),
},
{
test: /\.module\.css$/,
loader: ExtractTextPlugin.extract(
`${require.resolve('css-loader')}` +
`?sourceMap&-restructuring&modules&localIdentName=[local]___[hash:base64:5]&-autoprefixer!` +
`${require.resolve('postcss-loader')}`
),
},
{
test(filePath) {
return /\.less$/.test(filePath) && !/\.module\.less$/.test(filePath);
},
loader: ExtractTextPlugin.extract(
`${require.resolve('css-loader')}?sourceMap&-autoprefixer!` +
`${require.resolve('postcss-loader')}!` +
`${require.resolve('less-loader')}?{"sourceMap":true,"modifyVars":${JSON.stringify(theme)}}`
),
},
{
test: /\.module\.less$/,
loader: ExtractTextPlugin.extract(
`${require.resolve('css-loader')}?` +
`sourceMap&modules&localIdentName=[local]___[hash:base64:5]&-autoprefixer!` +
`${require.resolve('postcss-loader')}!` +
`${require.resolve('less-loader')}?` +
`{"sourceMap":true,"modifyVars":${JSON.stringify(theme)}}`
),
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
loader: `${require.resolve('url-loader')}?` +
`limit=10000&minetype=application/font-woff`,
},
{
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
loader: `${require.resolve('url-loader')}?` +
`limit=10000&minetype=application/font-woff`,
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: `${require.resolve('url-loader')}?` +
`limit=10000&minetype=application/octet-stream`,
},
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: `${require.resolve('file-loader')}` },
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: `${require.resolve('url-loader')}?` +
`limit=10000&minetype=image/svg+xml`,
},
{
test: /\.(png|jpg|jpeg|gif)(\?v=\d+\.\d+\.\d+)?$/i,
loader: `${require.resolve('url-loader')}?limit=10000`,
},
{ test: /\.json$/, loader: `${require.resolve('json-loader')}` },
{ test: /\.html?$/, loader: `${require.resolve('file-loader')}?name=[name].[ext]` },
],
},
postcss: [
rucksack(),
autoprefixer({
browsers: ['last 2 versions', 'Firefox ESR', '> 1%', 'ie >= 8', 'iOS >= 8', 'Android >= 4'],
}),
],
plugins: [
new webpack.optimize.CommonsChunkPlugin('common', commonName),
//公共模块名字
new ExtractTextPlugin(cssFileName, {
disable: false,
allChunks: true,
}),
//css文件名字
new webpack.optimize.OccurenceOrderPlugin(),
//顺序触发的插件
],
};
}
我们是如下调用的:
let webpackConfig = getWebpackCommonConfig(args);
而我们的args表示从shell控制台传入的参数,这些参数会被原样传入到上面的getWebpackCommonConfig方法中。但是,我们依然要弄清楚下面的内容:
let theme = {};
if (pkg.theme && typeof(pkg.theme) === 'string') {
let cfgPath = pkg.theme;
// relative path
if (cfgPath.charAt(0) === '.') {
cfgPath = resolve(args.cwd, cfgPath);
}
const getThemeConfig = require(cfgPath);
theme = getThemeConfig();
} else if (pkg.theme && typeof(pkg.theme) === 'object') {
theme = pkg.theme;
}
我们可以在package.json中配置theme选项,如果配置为对象,那么就是theme内容,否则如果是文件那么我们require进来,然后调用默认的方法!这也就是告诉我们,我们配置的这个文件名导出的内容必须是一个函数
!那么这个theme有什么用呢?其实这是less为我们提供的覆盖less文件默认配置的变量的方法!我们在package.json中配置的theme会被传入到以下的插件中:
ExtractTextPlugin
{
test(filePath) {
return /\.less$/.test(filePath) && !/\.module\.less$/.test(filePath);
},
loader: ExtractTextPlugin.extract(
`${require.resolve('css-loader')}?sourceMap&-autoprefixer!` +
`${require.resolve('postcss-loader')}!` +
`${require.resolve('less-loader')}?{"sourceMap":true,"modifyVars":${JSON.stringify(theme)}}`
),
}
首先:一种文件可以使用多个loader来完成;然后:我们可以使用?为不同的loader添加参数并且注意哪些参数是变量哪些参数是字符串!比如对于less-loader来说,我们使用了modifyVars来覆盖原来的样式,因为在loader里面会通过query读取查询字符串,然后做相应的覆盖(因为less里面使用了变量)。
less.modifyVars({
'@buttonFace': '#5B83AD',
'@buttonText': '#D9EEF2'
});
详见链接:modifyVars
为什么说getWebpackCommonConfig返回的是一个webpack的common配置信息,这些信息都是什么意思?为何说getBabelCommonConfig.js得到的是babel的基本配置,配置是什么意思?getTSCommonConfig得到的又是什么配置?这些内容不再一一赘述,读者可自行google.
最后打一个小广告说一下wcf与atool-build的区别,如果你有兴趣,也欢迎star,issue,贡献代码:
(1)wcf集成了三种打包模式
上面已经说过了,我们的wcf集成了三种打包模式,而且功能是逐渐增强的。webpack模式只是打包一次,然后退出,和webpack自己的打包方式是一样的。webpack watch模式会自动监听文件是否发生变化,然后重新打包。webpack-dev-server模式天然支持了HMR,支持无刷新更新数据。具体你可以阅读文档
(2)很好的扩展性
atool-build提供一个mergeCustomConfig函数来合并用户自定义的配置与默认的配置,并将用户配置作为参数传入函数进行修改,但是当要修改的配置项很多的时候就比较麻烦。wcf自己也集成了很多loader对文件进行处理,但是很容易进行拓展,只要你配置自己的扩展文件就可以了,内部操作都会自动完成。你可以通过两种方式来配置:
cli模式:
wcf --dev --devServer --config "Your custom webpack config file path"
//此时会自动合并用户自定义的配置与默认配置,通过webpack-merge完成,而不用逐项修改
Nodejs模式:
const build = require("webpackcc/lib/build");
const program = {
onlyCf : true,
//不启动打包,只是获取最终配置信息
cwd : process.cwd(),
dev : true,
//开发模式,不启动如UglifyJs等
config :"Your custom webpack config file path"
};
const finalConfig = build(program);
//得到最终的配置,想干嘛干嘛
通过nodejs模式,你可以获取webpack配置项用于其他地方。
下面给出一个完整的例子(假如下面给出的是我们自定义的配置文件):
module.exports = {
entry:{
'main': [
'webpack-hot-middleware/client?path=http://' + host + ':' + port + '/__webpack_hmr',
"bootstrap-webpack!./src/theme/bootstrap.config.js",
'./src/client.js'
]
},
output: {
path: assetsPath,
filename: '[name]-[hash].js',
chunkFilename: '[name]-[chunkhash].js',
publicPath: 'http://' + host + ':' + port + '/dist/'
},
plugins:[
new webpack.DefinePlugin({
__CLIENT__: true,
__SERVER__: false,
__DEVELOPMENT__: true,
__DEVTOOLS__: true
// <-------- DISABLE redux-devtools HERE
}),
new webpack.IgnorePlugin(/webpack-stats\.json$/),
webpackIsomorphicToolsPlugin.development()
],
module:{
rules:[
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" },
{
test: webpackIsomorphicToolsPlugin.regular_expression('images'),
use: {
loader: require.resolve("url-loader"),
options:{}
}
},
{
test: /\.jsx$/,
exclude :path.resolve("node_modules"),
use: [{
loader:require.resolve('babel-loader'),
options:updateCombinedBabelConfig()
}]
},
{
test: /\.js$/,
exclude :path.resolve("node_modules"),
use: [{
loader:require.resolve('babel-loader'),
options:updateCombinedBabelConfig()
}]
}]
}
}
注意:我们的wcf没有内置的entry,所以你这里配置的entry将会作为合并后的最终webpack配置的entry项。对于output来说,用户自定义的配置将会覆盖默认的配置(其他的也一样,除了module,plugins等)。对于plugin来说,我们会进行合并,此时不仅包含用户自定义的plugin,同时也包含内置的plugin。对于loader来说,如果有两个相同的loader,那么用户自定义的loader也会原样覆盖默认的loader。这样就很容易进行扩展。只要用户配置一个自定义配置文件的路径即可!
(3)dedupe
atool-build并没有对我们的plugin和loader进行去重,这样可能导致同一个plugin被添加了两次,这就要求用户必须了解内置那些plugin,从而不去添加它。同时也会导致某一个js文件的loader也添加了两次,得到如下的内容:
[ { test: { /\.jsx$/ [lastIndex]: 0 },
exclude:
{ [Function: exclude]
[length]: 1,
[name]: 'exclude',
[arguments]: null,
[caller]: null,
[prototype]: exclude { [constructor]: [Circular] } },
use: [ { loader: 'babel-loader', options: {} }, [length]: 1 ] },
{ test: { /\.jsx$/ [lastIndex]: 0 },
//对于jsx的loader又添加了一次
exclude:
{ [Function: exclude]
[length]: 1,
[name]: 'exclude',
[arguments]: null,
[caller]: null,
[prototype]: exclude { [constructor]: [Circular] } },
use: [ { loader: 'after', options: {} }, [length]: 1 ] },
[length]: 2 ]
这个问题你可以查看我给webpack-merge提出的issue。但是这些工作wcf已经做了,所以当你有两个相同的插件,或者两个相同的loader的情况下,都只会留下一个,并且用户自定义的优先级要高于默认配置的优先级。
(4)打包前进行钩子设置
如果在打包前,或者获取到最终配置之前,你要对最终配置做一个处理,比如删除某个plugin/loader,那么我们提供了一个钩子函数:
const program = {
onlyCf : true,
//此时不打包,只是为了获取最终配置用于nodejs
cwd : process.cwd(),
dev : true,
//不启动压缩
//下面这个hook用于去掉commonchunkplugin
hook:function(webpackConfig){
const commonchunkpluginIndex = webpackConfig.plugins.findIndex(plugin => {
return plugin.constructor.name == "CommonsChunkPlugin"
});
webpackConfig.plugins.splice(commonchunkpluginIndex, 1);
return webpackConfig;
}
};
(5)其他功能
请参考这里
集成webpack,webpack-dev-server的打包工具
webpack中的externals vs libraryTarget vs library
webpack的compiler与compilation对象
更加深入的问题,您可以继续阅读react+webpack+babel全家桶完整实例
参考资料: