aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/webpack.config.js
blob: 640297770e26faf27af6d70d2e2042a2c3802a06 (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
const path = require('path');
const webpack = require('webpack');
const TerserPlugin = require('terser-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const childProcess = require('child_process');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');

const pages = require('./pages');

const config = {
    entry: {
        compiler: './ts/pages/compiler.tsx',
        cov: './ts/pages/cov.tsx',
        profiler: './ts/pages/profiler.tsx',
        trace: './ts/pages/trace.tsx',
    },
    output: {
        path: path.join(__dirname, '/public'),
        filename: 'bundle-[name].js',
        chunkFilename: 'bundle-[name].js',
        publicPath: '/',
    },
    devtool: 'source-map',
    resolve: {
        modules: [path.join(__dirname, '/ts'), 'node_modules'],
        extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
        alias: {
            ts: path.join(__dirname, '/ts'),
            less: path.join(__dirname, '/less'),
        },
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                loader: 'source-map-loader',
                exclude: [
                    // instead of /\/node_modules\//
                    path.join(process.cwd(), 'node_modules'),
                    path.join(process.cwd(), '../..', 'node_modules'),
                ],
            },
            {
                test: /\.tsx?$/,
                loader: 'awesome-typescript-loader',
            },
            {
                test: /\.md$/,
                use: 'raw-loader',
            },
            {
                test: /\.less$/,
                loader: 'style-loader!css-loader!less-loader',
                exclude: /node_modules/,
            },
            {
                test: /\.css$/,
                loaders: ['style-loader', 'css-loader'],
            },
            {
                test: /\.svg$/,
                loaders: ['react-svg-loader'],
            },
        ],
    },
    optimization: {
        minimizer: [
            new TerserPlugin({
                sourceMap: true,
            }),
        ],
    },
    devServer: {
        port: 3572,
        disableHostCheck: true,
        overlay: true,
        historyApiFallback: true,
    },
};

module.exports = (_env, argv) => {
    let plugins = [
        new CleanWebpackPlugin('public'),
        ...pages.map(p => new HtmlWebpackPlugin(p)),
        new CopyWebpackPlugin([
            { from: 'assets/crawl.html', to: 'index.html' },
            { from: 'assets/fonts', to: 'fonts' },
            { from: 'assets/images', to: 'images' },
        ]),
    ];
    if (argv.mode === 'development') {
        config.mode = 'development';
    } else {
        config.mode = 'production';
        config.output.filename = 'bundle-[name].[chunkhash].js';
        config.output.chunkFilename = 'bundle-[name].[chunkhash].js';

        plugins = plugins.concat([
            new webpack.DefinePlugin({
                'process.env': {
                    NODE_ENV: JSON.stringify(process.env.NODE_ENV || config.mode),
                },
            }),
            // commented out to check the bundle when needed
            //new BundleAnalyzerPlugin(),
        ]);
    }
    console.log('i 「atl」: Mode: ', config.mode);

    config.plugins = plugins;
    console.log('i 「atl」: Plugin Count: ', config.plugins.length);

    return config;
};