用webpack4帶你實現一個vue的打包的項目

一個用webpack4打包的vue 的項目,參照vue-cliwebpack配置,javascript

一步一步帶你實現一個vue的打包的項目,每個commit對應一個步驟。css

github 地址

clone project

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

install

npm install or yarnvue

1、初始化項目

初始化項目,用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.jsnode

2、打包css和圖片等資源

這裏打包csssass 爲例,用到了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.jsgit

3、配置熱加載、代理等開發環境

經過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-loaderweb

運行npm run dev 或者 yarn dev 就能夠啓動服務了

4、配置打包環境

經過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項目啦。

5、檢查版本,優化打包輸出和Eslint設置

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
  }
},

6、打包優化

一、添加DllPluginDllReferencePlugin來打包優化不變的庫,
二、經過cache-loader來作loader的緩存,
三、經過UglifyJsPluginparallel來開啓多線程打包

先運行npm run dll 而後 npm run build

相關文章
相關標籤/搜索