aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
blob: 2415ac7935f6bb2639b8202cd52b9ee7694b63b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const webpack = require('webpack');
const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');

module.exports = (env, argv) => {
    const dev = argv.mode !== 'production';
    const config = {
        devtool: dev ? 'eval-source-map' : false,
        mode: dev ? 'development' : 'production',
        entry: {
            'Juick': [
                __dirname + '/src/index.js',
                __dirname + '/src/index.css'
            ]
        },
        output: {
            filename: dev ? '[name].js' : '[name].[contenthash].bundle.js',
            chunkFilename: dev ? '[name].js' : '[name].[contenthash].bundle.js',
            publicPath: '/',
            path: path.resolve(__dirname, 'dist')
        },
        module: {
            rules: [
                {
                    test: /\.css$/,
                    use: [
                        dev ? 'style-loader' : MiniCssExtractPlugin.loader,
                        {
                            loader: 'css-loader'
                        },
                        {
                            loader: 'postcss-loader',
                            options: {
                                postcssOptions: {
                                    plugins: [
                                        'stylelint',
                                        [
                                            'postcss-preset-env', {
                                                stage: 0,
                                                autoprefixer: { grid: true }
                                            }
                                        ]
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    test: /\.html$/,
                    use: [
                        {
                            loader: 'html-loader',
                            options: { minimize: false }
                        }
                    ]
                },
                {
                    test: /\.js$/,
                    exclude: /node_modules/,
                    loader: 'babel-loader'
                },
                {
                    test: /\.(jpe?g|png|gif|svg)$/i,
                    loader: 'file-loader',
                    options: {
                        hash: 'sha512',
                        digest: 'hex',
                        name: '[contenthash].[ext]'
                    }
                }
            ]
        },
        plugins: [
            new webpack.IgnorePlugin({
                resourceRegExp: /^\.\/locale$/,
                contextRegExp: /moment$/,
            }),
            new MiniCssExtractPlugin({
                filename: 'Juick.[contenthash].css'
            }),
            new HtmlWebPackPlugin({
                template: './src/index.html',
                filename: './index.html'
            }),
            new ESLintPlugin({
                files: 'src',
                lintDirtyModulesOnly: true,
                failOnWarning: false,
                failOnError: true,
                fix: false
            })
        ],
        devServer: {
            historyApiFallback: true,
            hot: true,
            client: {
                progress: true,
                overlay: true
            }
        }
    };

    if (!dev) {
        config.optimization = {
            minimizer: [
                '...',
                new CssMinimizerPlugin({})
            ],
            splitChunks: {
                chunks: 'all'
            }
        };
    }
    return config;
};