-
-
Notifications
You must be signed in to change notification settings - Fork 191
/
webpack.utils.js
139 lines (129 loc) · 4 KB
/
webpack.utils.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
132
133
134
135
136
137
138
139
/* Copyright (c) 2018 Kamil Mikosz
* Copyright (c) 2018 Sienori
* Released under the MIT license.
* see https://opensource.org/licenses/MIT */
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const ZipPlugin = require("zip-webpack-plugin");
const path = require("path");
const webpack = require("webpack");
const getHTMLPlugins = (browserDir, outputDir = "dev", sourceDir = "src") => [
new HtmlWebpackPlugin({
title: "Popup",
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/popup/index.html`),
template: `${sourceDir}/popup/index.html`,
chunks: ["popup"]
}),
new HtmlWebpackPlugin({
title: "Options",
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/options/index.html`),
template: `${sourceDir}/options/index.html`,
chunks: ["options"]
}),
new HtmlWebpackPlugin({
title: "Replaced",
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/replaced/index.html`),
template: `${sourceDir}/replaced/index.html`,
chunks: ["replaced"]
}),
new HtmlWebpackPlugin({
title: "Replaced",
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/replaced/replaced.html`),
template: `${sourceDir}/replaced/index.html`,
chunks: ["replaced"]
}),
new HtmlWebpackPlugin({
title: "Offscreen",
filename: path.resolve(__dirname, `${outputDir}/${browserDir}/offscreen/index.html`),
template: `${sourceDir}/offscreen/index.html`,
chunks: ["offscreen"]
})
];
const getOutput = (browserDir, outputDir = "dev") => {
return {
path: path.resolve(__dirname, `${outputDir}/${browserDir}`),
filename: "[name]/[name].js"
};
};
const getEntry = (sourceDir = "src") => {
return {
popup: path.resolve(__dirname, `${sourceDir}/popup/index.js`),
options: path.resolve(__dirname, `${sourceDir}/options/index.js`),
replaced: path.resolve(__dirname, `${sourceDir}/replaced/replaced.js`),
background: path.resolve(__dirname, `${sourceDir}/background/background.js`),
offscreen: path.resolve(__dirname, `${sourceDir}/offscreen/offscreen.js`)
};
};
const getCopyPlugins = (browserDir, outputDir = "dev", sourceDir = "src") => [
new CopyWebpackPlugin({
patterns: [
{
from: `${sourceDir}/icons`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/icons`)
},
{
from: `${sourceDir}/_locales`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/_locales`)
},
{
from: `${sourceDir}/manifest.json`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/manifest.json`)
}
]
})
];
const getFirefoxCopyPlugins = (browserDir, outputDir = "dev", sourceDir = "src") => [
new CopyWebpackPlugin({
patterns: [
{
from: `${sourceDir}/icons`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/icons`)
},
{
from: `${sourceDir}/_locales`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/_locales`)
},
{
from: `${sourceDir}/manifest-ff.json`,
to: path.resolve(__dirname, `${outputDir}/${browserDir}/manifest.json`)
}
]
})
];
const getMiniCssExtractPlugin = () => [
new MiniCssExtractPlugin({
filename: "[name]/[name].css"
})
];
const getZipPlugin = (browserDir, outputDir = "dist", exclude = "") =>
new ZipPlugin({
path: path.resolve(__dirname, `${outputDir}`),
filename: browserDir,
extension: "zip",
fileOptions: {
mtime: new Date(),
mode: 0o100664,
compress: true,
forceZip64Format: false
},
zipOptions: {
forceZip64Format: false
},
exclude: exclude
});
const getBufferPlugin = () => [
new webpack.ProvidePlugin({
Buffer: [require.resolve("buffer/"), "Buffer"],
}),
];
module.exports = {
getHTMLPlugins,
getOutput,
getCopyPlugins,
getFirefoxCopyPlugins,
getMiniCssExtractPlugin,
getBufferPlugin,
getZipPlugin,
getEntry
};