溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何用webpack4帶你實(shí)現(xiàn)一個(gè)vue的打包的項(xiàng)目

發(fā)布時(shí)間:2020-10-24 23:44:25 來(lái)源:腳本之家 閱讀:216 作者:naice 欄目:web開發(fā)

一個(gè)用webpack4打包的vue 的項(xiàng)目,參照vue-cli的webpack配置,

一步一步帶你實(shí)現(xiàn)一個(gè)vue的打包的項(xiàng)目,每一個(gè)commit對(duì)應(yīng)一個(gè)步驟。

github 地址

clone project

git clone git@github.com:naihe138/nvue.git

install

npm install or yarn

一、初始化項(xiàng)目

初始化項(xiàng)目,用vue-loader來(lái)打包.vue文件,html-webpack-plugin插件來(lái)導(dǎo)出html文件。

第一步我們很簡(jiǎn)單,就利用vue-loader 和 babel-loader 是把.vue文件打包出來(lái),總共才40多行代碼,看build/webpack.base.conf.js文件注釋就看的懂。+++表示有省略的代碼

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')
   }
  ]
 }
 +++
}

運(yùn)行 webpack --config build/webpack.base.conf.js

二、打包c(diǎn)ss和圖片等資源

這里打包c(diǎn)ss以sass 為例,用到了mini-css-extract-plugin插件提取css,用url-loader來(lái)處理字體、圖片、音頻等資源。非常簡(jiǎn)單。如下代碼,+++表示有省略的代碼

+++
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'
  })
 ]
}

運(yùn)行 webpack --config build/webpack.base.conf.js

三、配置熱加載、代理等開發(fā)環(huán)境

通過build/config.js來(lái)設(shè)置開發(fā)配置。如下注釋

const path = require('path')

module.exports = {
 dev: {
  assetsSubDirectory: 'static', // 靜態(tài)文件目錄
  assetsPublicPath: '/', // 相對(duì)文件路徑
  proxyTable: {},
  host: 'localhost',
  port: '8000',
  autoOpenBrowser: false, // 是否自動(dòng)打開瀏覽器
  errorOverlay: true, // 瀏覽器錯(cuò)誤提示遮罩層
  notifyOnErrors: true, // 編譯錯(cuò)誤的時(shí)候通知提示,需要friendly-errors-webpack-plugin 配合
  poll: false,
  useEslint: true, // 便宜使用eslint-loader模塊
  showEslintErrorsInOverlay: false, // eslint瀏覽器錯(cuò)誤提示遮罩層
  devtool: 'cheap-module-eval-source-map', // Source Maps
  cssSourceMap: true, // css Source Maps
  cacheBusting: false, // vue debugg 提示
 }
}

webpack.dev.conf.js中,通過webpack-dev-server 插件來(lái)開啟熱重載服務(wù),同時(shí)配置自動(dòng)補(bǔ)全css兼容代碼的插件,postcss-loader

運(yùn)行npm run dev 或者 yarn dev 就可以啟動(dòng)服務(wù)了

四、配置打包環(huán)境

通過build/config.js來(lái)設(shè)置開發(fā)配置。如下注釋

const path = require('path')

module.exports = {
 +++
 build: {
  // html模板
  index: path.resolve(__dirname, '../dist/index.html'),
  // Paths
  assetsRoot: path.resolve(__dirname, '../dist'),
  assetsSubDirectory: 'static',
  assetsPublicPath: '/',
  // 生產(chǎn)環(huán)境的souce map
  productionSourceMap: false,
  devtool: '#source-map',
  // 開啟靜態(tài)文件的Gzip壓縮
  // 如果是true 的話 需要 npm install --save-dev compression-webpack-plugin
  productionGzip: false,
  productionGzipExtensions: ['js', 'css'],

  // 打包完成顯示包大小的狀態(tài)分析
  // `npm run build --report`
  bundleAnalyzerReport: process.env.npm_config_report
 }
}

運(yùn)行npm run build 或者 yarn build 就可以實(shí)現(xiàn)打包vue項(xiàng)目啦。

五、檢查版本,優(yōu)化打包輸出和Eslint設(shè)置

check-version.js中用 shelljs 模塊檢查時(shí)候有npm命令, semver模塊語(yǔ)義化版本號(hào),然后在build.js合并webpack.prod.conf.js的的配置,然后組在格式化輸出。

// 檢查時(shí)候有安裝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 來(lái)配置eslint的檢查,建立.eslintrc.js去設(shè)置規(guī)則

{
 test: /\.(js|vue)$/,
 loader: 'eslint-loader',
 enforce: 'pre',
 include: [resolve('src')],
 exclude: /node_modules/,
 options: {
  formatter: require('eslint-friendly-formatter'),
  emitWarning: !config.dev.showEslintErrorsInOverlay
 }
},

六、打包優(yōu)化

1、添加DllPlugin和DllReferencePlugin來(lái)打包優(yōu)化不變的庫(kù),
2、通過cache-loader來(lái)做loader的緩存,
3、通過UglifyJsPlugin的parallel來(lái)開啟多線程打包

先運(yùn)行npm run dll 然后 npm run build

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI