-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathwebpack.config.js
122 lines (120 loc) · 3.35 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
const path = require("path");
const webpack = require("webpack");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const packageJSON = require("./package.json");
const fileExtensions = [
"jpg",
"jpeg",
"png",
"gif",
"eot",
"otf",
"svg",
"ttf",
"woff",
"woff2",
];
const srcPath = [__dirname, "src"];
const jsPath = [...srcPath, "js"];
const htmlPath = [...srcPath, "html"];
const config = (mode) => {
const isDevelopment = mode === "development";
return {
watch: isDevelopment ? true : false,
devtool: isDevelopment ? "inline-source-map" : "",
mode: mode,
entry: {
page: path.join(...[...jsPath, "page.js"]),
content: path.join(...[...jsPath, "content.js"]),
searchWorker: path.join(...[...jsPath, "search-worker.js"]),
databaseWorker: path.join(...[...jsPath, "database-worker.js"]),
background: path.join(...[...jsPath, "background.js"]),
ui: path.join(...[...jsPath, "ui.jsx"]),
test: path.join(...[...jsPath, "test.js"]),
},
output: {
path: path.join(__dirname, "build"),
filename: "[name].bundle.js",
},
module: {
rules: [
{
test: /\.css$/,
loader: "style-loader!css-loader",
},
{
test: new RegExp(".(" + fileExtensions.join("|") + ")$"),
loader: "file-loader?name=[name].[ext]",
exclude: /node_modules/,
},
{
test: /\.html$/,
loader: "html-loader",
exclude: /node_modules/,
},
{
test: /\.(js|jsx)$/,
loader: "babel-loader",
exclude: /node_modules/,
},
],
},
resolve: {
extensions: fileExtensions
.map((extension) => "." + extension)
.concat([".jsx", ".js"]),
},
plugins: [
//new BundleAnalyzerPlugin(),
new webpack.DefinePlugin({
DEV: isDevelopment,
}),
new CopyWebpackPlugin([
{
from: "src/manifest.json",
transform: function (content) {
// Generates the manifest file using the package.json informations
// and also modifies some of the permissions based on the mode.
const manifestJSON = JSON.parse(content.toString());
return Buffer.from(
JSON.stringify({
...manifestJSON,
name: packageJSON.name,
description: packageJSON.description,
version: packageJSON.version,
permissions: isDevelopment
? manifestJSON.permissions.concat(["management"])
: manifestJSON.permissions,
})
);
},
},
{
from: "src/img/*",
flatten: true,
},
{
from: "src/css/*",
flatten: true,
},
]),
new HtmlWebpackPlugin({
template: path.join(...[...htmlPath, "ui.html"]),
filename: "ui.html",
chunks: ["ui"],
}),
new HtmlWebpackPlugin({
template: path.join(...[...htmlPath, "test.html"]),
filename: "test.html",
chunks: ["test"],
}),
],
};
};
module.exports = (env, argv) => {
const { mode } = argv;
return config(mode);
};