Blame view

build/webpack.dist.locale.config.js 1.02 KB
4a7f28fd   Sergio Crisostomo   eslint and replac...
1
2
3
  const path = require('path');
  const webpack = require('webpack');
  const entry = require('./locale');
a3a725a1   Lawrence Lee   add locale packag...
4
5
6
  process.env.NODE_ENV = 'production';
  
  module.exports = {
71eb889f   Graham Fairweather   Enable creation o...
7
      devtool: 'source-map',
aaf900f3   Lawrence Lee   update locale pac...
8
      entry,
a3a725a1   Lawrence Lee   add locale packag...
9
10
11
12
13
14
15
      module: {
          rules: [
              {
                  test: /\.js$/,
                  loader: 'babel-loader',
                  exclude: /node_modules/
              }
4a7f28fd   Sergio Crisostomo   eslint and replac...
16
          ]
a3a725a1   Lawrence Lee   add locale packag...
17
18
19
20
21
22
23
24
25
      },
      output: {
          path: path.resolve(__dirname, '../dist/locale'),
          publicPath: '/dist/locale/',
          filename: '[name].js',
          library: 'iview/locale',
          libraryTarget: 'umd',
          umdNamedDefine: true
      },
54f510c5   梁灏   fixed not support...
26
27
28
29
30
31
32
33
      externals: {
          vue: {
              root: 'Vue',
              commonjs: 'vue',
              commonjs2: 'vue',
              amd: 'vue'
          }
      },
a3a725a1   Lawrence Lee   add locale packag...
34
35
36
37
38
      plugins: [
          new webpack.DefinePlugin({
              'process.env': {
                  NODE_ENV: '"production"'
              }
593742af   梁灏   update locale bui...
39
40
          }),
          new webpack.optimize.UglifyJsPlugin({
71eb889f   Graham Fairweather   Enable creation o...
41
42
              parallel: true,
              sourceMap: true,
a3a725a1   Lawrence Lee   add locale packag...
43
44
          })
      ]
4a7f28fd   Sergio Crisostomo   eslint and replac...
45
  };