简介
基于 webpack2 实现的多入口项目脚手架,主要使用 extract-text-webpack-plugin 实现 js 、css 公共代码提取,html-webpack-plugin 实现 html 多入口,less-loader 实现 less 编译,postcss-loader 配置 autoprefixer 实现自动添加浏览器兼容前缀,html-withimg-loader 实现 html 内引入图片版本号添加和模板功能,babel-loader 实现 ES6 转码功能, happypack 多线程加速构建速度。
目录
配置
多入口
根据 JS 目录获取多入口数组
/**
- 根据目录获取入口
- @param {[type]} globPath [description]
- @return {[type]} [description]
/
function getEntry (globPath) {
let entries = {};
Glob.sync(globPath).forEach(function (entry) {
let basename = path.basename(entry,path.extname(entry)),pathname = path.dirname(entry);
// js/lib/.js 不作为入口
if (!entry.match(/\/js\/lib\//)) {
entries[pathname.split('/').splice(3).join('/') + '/' + basename] = pathname + '/' + basename;
}
});
return entries;
}
// webpack 配置
const config = {
entry: entryJs,output: {
filename: 'js/[name].js?[chunkhash:8]',chunkFilename: 'js/[name].js?[chunkhash:8]',path: path.resolve(ROOT,'dist'),publicPath: '/'
},}
module
使用 babel 实现 ES2015 转 ES5,less 转 css 并使用 postcss 实现 autoprefixer 自动添加浏览器兼容,url-loader 实现 css 引用图片、字体添加版本号,html-withimg-loader 实现 html 引用图片添加版本号并实现模板功能。
View 视图
根据目录对应关系,获取 js 对应的 html 入口
configPlugins.push(new HtmlWebpackPlugin(v));
});
// webpack 配置
resolve: {
alias: {
views: path.resolve(ROOT,'./src/view')
}
},/**
- 根据目录获取 Html 入口
- @param {[type]} globPath [description]
- @return {[type]} [description]
*/
function getEntryHtml (globPath) {
let entries = [];
Glob.sync(globPath).forEach(function (entry) {
let basename = path.basename(entry,pathname = path.dirname(entry),// @see https://github.com/kangax/html-minifier#options-quick-reference
minifyConfig = IsDev ? '' : {
removeComments: true,collapseWhitespace: true,minifyCSS: true,minifyJS: true
};
entries.push({
filename: entry.split('/').splice(2).join('/'),template: entry,chunks: ['common',pathname.split('/').splice(3).join('/') + '/' + basename],minify: minifyConfig
});
});
return entries;
}
plugins
使用 happypack 多线程加快构建速度,CommonsChunkPlugin 实现提取公用 js 为单独文件,extract-text-webpack-plugin 实现提取公用 css 为单独文件,
entryHtml.forEach(function (v) {
configPlugins.push(new HtmlWebpackPlugin(v));
});
// webpack 配置
plugins: configPlugins,
开发
webpack-dev-server 实现开发环境自动刷新等功能
开发
http://localhost:8080/view
构建
cross-env 实现区分开发和生产环境构建
命令说明
npm run dev
开发环境构建,不压缩代码
npm run build
生产环境构建,压缩代码
仓库
:总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持。
原文链接:https://www.f2er.com/js/38346.html