This repository has been archived by the owner on Aug 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
247 lines (223 loc) · 5.58 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
const path = require('path')
const mergeDeep = require('merge-deep')
const MiniCSSExtractPlugin = require('mini-css-extract-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const CleanPlugin = require('clean-webpack-plugin').CleanWebpackPlugin
const {
CheckerPlugin,
TsConfigPathsPlugin,
} = require('awesome-typescript-loader')
const DotenvPlugin = require('dotenv-webpack')
const pkg = require('./package.json')
// Utils
let __DEV__
function root(...args) {
return path.resolve(__dirname, ...args)
}
function copyAssets(destination) {
return new CopyPlugin(
[{ from: paths.assets, to: path.join(destination, 'assets') }],
{ copyUnmodified: true }
)
}
function copyManifest(manifest) {
return new CopyPlugin(
[
{
from: manifest,
to: 'manifest.json',
transform: manifestTransform,
},
],
{ copyUnmodified: true }
)
}
// Reusable stuffs
const defaultEnv = { production: false }
const paths = Object.freeze({
src: root('src'),
get scripts() {
return path.join(paths.src, 'scripts')
},
get contentScript() {
return path.join(paths.scripts, 'content.ts')
},
get backgroundScript() {
return path.join(paths.scripts, 'background.ts')
},
get manifests() {
return path.join(paths.src, 'manifests')
},
get chromeManifest() {
return path.join(paths.manifests, 'manifest.chrome.json')
},
get firefoxManifest() {
return path.join(paths.manifests, 'manifest.firefox.json')
},
assets: root('assets'),
build: root('build'),
get buildChrome() {
return path.join(paths.build, 'chrome')
},
get buildFirefox() {
return path.join(paths.build, 'firefox')
},
dist: root('dist'),
get distChrome() {
return path.join(paths.dist, 'chrome')
},
get distFirefox() {
return path.join(paths.dist, 'firefox')
},
nodeModules: root('node_modules'),
get cache() {
return path.join(paths.nodeModules, '.cache')
},
})
// Configuration
function createConfig({ production } = defaultEnv) {
const base = createBaseConfig()
const chrome = createChromeConfig(base)
const firefox = createFirefoxConfig(base)
__DEV__ = !production
return production
? [chrome.production, firefox.production]
: [chrome.development, firefox.development]
}
function manifestTransform(content) {
const manifest = {
...JSON.parse(content.toString()),
description: pkg.description,
version: pkg.version,
content_security_policy: __DEV__
? "script-src 'self' 'unsafe-eval'; object-src 'self'"
: "script-src 'self'; object-src 'self'",
}
return Buffer.from(JSON.stringify(manifest, null, 2))
}
function createBaseConfig() {
const common = {
context: paths.src,
entry: {
'content-script': paths.contentScript,
'background-script': paths.backgroundScript,
},
output: {
filename: '[name].js',
},
resolve: {
extensions: ['.ts', '.js'],
plugins: [new TsConfigPathsPlugin()],
},
module: {
rules: [
{
test: /\.ts$/i,
loader: 'awesome-typescript-loader',
options: {
transpileModule: true,
forceIsolatedModules: true,
useCache: true,
cacheDirectory: path.join(paths.cache),
},
},
{
test: /\.scss$/i,
use: [
{ loader: MiniCSSExtractPlugin.loader },
'css-loader',
'postcss-loader',
{
loader: 'sass-loader',
options: {
includePaths: [path.join(paths.src, 'scss'), paths.nodeModules],
},
},
],
},
],
},
plugins: [
new CheckerPlugin(),
new MiniCSSExtractPlugin({
filename: '[name].css',
}),
new DotenvPlugin({
path: root('.env'),
defaults: root('.env.defaults'),
safe: root('.env.example'),
}),
],
}
const development = { mode: 'development' }
const production = { mode: 'production' }
return {
development: mergeDeep(common, development),
production: mergeDeep(common, production),
}
}
function createChromeConfig(base) {
const common = {
name: 'chrome',
plugins: [copyManifest(paths.chromeManifest)],
}
const development = {
output: {
path: paths.buildChrome,
},
plugins: [
new CleanPlugin({
cleanOnceBeforeBuildPatterns: [paths.buildChrome],
}),
copyAssets(paths.buildChrome),
],
}
const production = {
output: {
path: paths.distChrome,
},
plugins: [
new CleanPlugin({
cleanOnceBeforeBuildPatterns: [paths.distChrome],
}),
copyAssets(paths.distChrome),
],
}
return {
development: mergeDeep(base.development, common, development),
production: mergeDeep(base.production, common, production),
}
}
function createFirefoxConfig(base) {
const common = {
name: 'firefox',
plugins: [copyManifest(paths.firefoxManifest)],
}
const development = {
output: {
path: paths.buildFirefox,
},
plugins: [
new CleanPlugin({
cleanOnceBeforeBuildPatterns: [paths.buildFirefox],
}),
copyAssets(paths.buildFirefox),
],
}
const production = {
output: {
path: paths.distFirefox,
},
plugins: [
new CleanPlugin({
cleanOnceBeforeBuildPatterns: [paths.distFirefox],
}),
copyAssets(paths.distFirefox),
],
}
return {
development: mergeDeep(base.development, common, development),
production: mergeDeep(base.production, common, production),
}
}
module.exports = createConfig