Blame view

build/webpack.dist.locale.config.js 1.1 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
      module: {
          rules: [
              {
                  test: /\.js$/,
                  loader: 'babel-loader',
ca9e77e9   Graham Fairweather   Missed config
14
15
16
                  options: {
                      sourceMap: true,
                  },
a3a725a1   Lawrence Lee   add locale packag...
17
18
                  exclude: /node_modules/
              }
4a7f28fd   Sergio Crisostomo   eslint and replac...
19
          ]
a3a725a1   Lawrence Lee   add locale packag...
20
21
22
23
24
25
26
27
28
      },
      output: {
          path: path.resolve(__dirname, '../dist/locale'),
          publicPath: '/dist/locale/',
          filename: '[name].js',
          library: 'iview/locale',
          libraryTarget: 'umd',
          umdNamedDefine: true
      },
54f510c5   梁灏   fixed not support...
29
30
31
32
33
34
35
36
      externals: {
          vue: {
              root: 'Vue',
              commonjs: 'vue',
              commonjs2: 'vue',
              amd: 'vue'
          }
      },
a3a725a1   Lawrence Lee   add locale packag...
37
38
39
40
41
      plugins: [
          new webpack.DefinePlugin({
              'process.env': {
                  NODE_ENV: '"production"'
              }
593742af   梁灏   update locale bui...
42
43
          }),
          new webpack.optimize.UglifyJsPlugin({
71eb889f   Graham Fairweather   Enable creation o...
44
45
              parallel: true,
              sourceMap: true,
a3a725a1   Lawrence Lee   add locale packag...
46
47
          })
      ]
4a7f28fd   Sergio Crisostomo   eslint and replac...
48
  };