forked from Andiedie/sync-my-cookie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
131 lines (128 loc) · 3.36 KB
/
webpack.config.js
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
120
121
122
123
124
125
126
127
128
129
130
131
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const {BundleAnalyzerPlugin} = require('webpack-bundle-analyzer');
const isProduction = process.env.NODE_ENV === 'production';
module.exports = [
create('./src/popup.tsx'),
create('./src/options.tsx'),
create('./src/background.ts'),
];
function create(file) {
const parsed = path.parse(file);
const name = parsed.name;
const ext = parsed.ext;
const plugins = [
new LodashModuleReplacementPlugin(),
// new BundleAnalyzerPlugin(),
];
if (ext === '.tsx') {
plugins.push(new HtmlWebpackPlugin({
filename: `${name}.html`,
inject: false,
template: require('html-webpack-template'),
appMountId: 'root',
title: 'SyncMyCookie'
}));
}
if (isProduction) {
plugins.push(new MiniCssExtractPlugin({
filename: '[name].[contenthash:8].css',
chunkFilename: '[name].[contenthash:8].chunk.css',
}));
}
return {
mode: isProduction ? 'production' : 'development',
entry: file,
output: {
filename: `${name}.js`,
path: path.resolve(__dirname, './build'),
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
alias: {
'@ant-design/icons/lib/dist$': path.resolve(__dirname, './src/icons.ts'),
},
},
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{ loader: 'babel-loader' },
{ loader: 'awesome-typescript-loader' },
]
},
{
test: /\.(scss|sass)$/,
exclude: /\.module\.(scss|sass)$/,
use: getStyleLoaders(
{
importLoaders: 2,
},
'sass-loader'
),
},
{
test: /\.module\.(scss|sass)$/,
use: getStyleLoaders(
{
importLoaders: 2,
modules: true,
localIdentName: '[name]__[local]__[hash:base64:5]'
},
'sass-loader'
),
},
{
test: /.less$/,
use: getStyleLoaders(
{
importLoaders: 2,
},
'less-loader',
{ javascriptEnabled: true },
),
},
],
},
plugins,
};
};
function getStyleLoaders(cssOptions, preProcessor, preProcessorOptions) {
const loaders = [
isProduction ? { loader: MiniCssExtractPlugin.loader } : 'style-loader',
{
loader: 'css-loader',
options: cssOptions,
},
{
// Options for PostCSS as we reference these options twice
// Adds vendor prefixing based on your specified browser support in
// package.json
loader: 'postcss-loader',
options: {
// Necessary for external CSS imports to work
// https://github.com/facebook/create-react-app/issues/2677
ident: 'postcss',
plugins: () => [
require('postcss-flexbugs-fixes'),
require('postcss-preset-env')({
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
}),
],
},
},
];
if (preProcessor) {
loaders.push({
loader: preProcessor,
options: preProcessorOptions,
});
}
return loaders;
};