一個用webpack4
打包的vue
的項目,參照vue-cli
的webpack
配置,javascript
一步一步帶你實現一個vue的打包的項目,每個commit對應一個步驟。css
git clone git@github.com:naihe138/nvue.git
html
npm install
or yarn
vue
初始化項目,用vue-loader
來打包.vue
文件,html-webpack-plugin
插件來導出html
文件。 第一步咱們很簡單,就利用vue-loader
和babel-loader
是把.vue
文件打包出來,總共才40多行代碼,看build/webpack.base.conf.js
文件註釋就看的懂。+++
表示有省略的代碼java
module.exports = {
+++
// 模塊,loader
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
exclude: /node_modules/,
include: resolve('src')
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: resolve('src')
}
]
}
+++
}
複製代碼
運行 webpack --config build/webpack.base.conf.js
node
這裏打包css
以sass
爲例,用到了mini-css-extract-plugin
插件提取css
,用url-loader
來處理字體、圖片、音頻等資源。很是簡單。以下代碼,+++
表示有省略的代碼webpack
+++
module.exports = {
+++
// 模塊,loader
module: {
rules: [
+++
{
test: /\.s?css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
]
},
{
test: /.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/img/[name].[hash:7].[ext]'
}
}
+++
]
},
// 插件
plugins: [
+++
new MiniCssExtractPlugin({
filename: 'static/css/[name].[hash].css',
chunkFilename: 'static/css/[name].[hash].css'
})
]
}
複製代碼
運行 webpack --config build/webpack.base.conf.js
git
經過build/config.js
來設置開發配置。以下注釋github
const path = require('path')
module.exports = {
dev: {
assetsSubDirectory: 'static', // 靜態文件目錄
assetsPublicPath: '/', // 相對文件路徑
proxyTable: {},
host: 'localhost',
port: '8000',
autoOpenBrowser: false, // 是否自動打開瀏覽器
errorOverlay: true, // 瀏覽器錯誤提示遮罩層
notifyOnErrors: true, // 編譯錯誤的時候通知提示,須要friendly-errors-webpack-plugin 配合
poll: false,
useEslint: true, // 便宜使用eslint-loader模塊
showEslintErrorsInOverlay: false, // eslint瀏覽器錯誤提示遮罩層
devtool: 'cheap-module-eval-source-map', // Source Maps
cssSourceMap: true, // css Source Maps
cacheBusting: false, // vue debugg 提示
}
}
複製代碼
在webpack.dev.conf.js
中,經過webpack-dev-server
插件來開啓熱重載服務,同時配置自動補全css兼容代碼的插件,postcss-loader
web
運行npm run dev
或者 yarn dev
就能夠啓動服務了
經過build/config.js
來設置開發配置。以下注釋
const path = require('path')
module.exports = {
+++
build: {
// html模板
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: '/',
// 生產環境的souce map
productionSourceMap: false,
devtool: '#source-map',
// 開啓靜態文件的Gzip壓縮
// 若是是true 的話 須要 npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// 打包完成顯示包大小的狀態分析
// `npm run build --report`
bundleAnalyzerReport: process.env.npm_config_report
}
}
複製代碼
運行npm run build
或者 yarn build
就能夠實現打包vue項目啦。
在check-version.js
中用 shelljs
模塊檢查時候有npm命令,semver
模塊語義化版本號,而後在build.js
合併webpack.prod.conf.js
的的配置,而後組在格式化輸出。
// 檢查時候有安裝npm命令
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
// 格式化輸出
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false,
chunks: false,
chunkModules: false
}) + '\n\n')
複製代碼
經過eslint-loader 來配置eslint的檢查,創建.eslintrc.js去設置規則
{
test: /\.(js|vue)$/,
loader: 'eslint-loader',
enforce: 'pre',
include: [resolve('src')],
exclude: /node_modules/,
options: {
formatter: require('eslint-friendly-formatter'),
emitWarning: !config.dev.showEslintErrorsInOverlay
}
},
複製代碼
一、添加DllPlugin
和DllReferencePlugin
來打包優化不變的庫,具體看webpack.dll.conf.js
文件
二、經過cache-loader
來作loader
的緩存,
三、經過UglifyJsPlugin
的parallel
來開啓多線程打包
{
test: /\.vue$/,
loader: 'vue-loader',
exclude: /node_modules/,
include: resolve('src'),
options: {
cacheDirectory: resolve('./cache-loader'), // 緩存
cacheIdentifier: 'cache-loader:{version} {process.env.NODE_ENV}'
}
},
{
test: /\.js$/,
use: isProduction ? [
{
loader: 'cache-loader',
options: {
cacheDirectory: resolve('cache-loader'), // 緩存
}
},
'babel-loader'
] : 'babel-loader',
exclude: /node_modules/,
include: resolve('src')
},
複製代碼
先運行npm run dll
而後 npm run build