forked from ipfs/ipfs-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
157 lines (151 loc) · 4.27 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
const path = require('path')
const webpack = require('webpack')
const merge = require('webpack-merge')
const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// common configuration shared by all targets
const commonConfig = {
target: 'web',
bail: true,
output: {
path: path.resolve(__dirname, 'add-on/dist/bundles'),
publicPath: '/dist/bundles/',
filename: '[name].bundle.js'
},
optimization: {
minimizer: [
// Default flags break js-ipfs: https://github.com/ipfs-shipyard/ipfs-companion/issues/521
new UglifyJsPlugin({
parallel: true,
extractComments: true,
uglifyOptions: {
compress: { unused: false },
mangle: true
}
})
]
},
// plugins: [new BundleAnalyzerPlugin()]
plugins: [
new SimpleProgressWebpackPlugin({
format: process.env.CI ? 'expanded' : 'compact'
}),
new webpack.DefinePlugin({
global: 'window', // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
'process.env': {
NODE_ENV: '"production"'
}
})
],
module: {
rules: [
{
exclude: /node_modules/,
test: /\.js$/,
use: ['babel-loader']
}
]
},
node: {
global: false, // https://github.com/webpack/webpack/issues/5627#issuecomment-394309966
Buffer: true,
fs: 'empty',
net: 'empty',
tls: 'empty'
},
performance: {
maxEntrypointSize: Infinity,
maxAssetSize: 4194304 // https://github.com/mozilla/addons-linter/pull/892
}
}
// background page bundle (with heavy dependencies)
const bgConfig = merge(commonConfig, {
name: 'background',
entry: {
backgroundPage: './add-on/src/background/background.js'
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
vendors: false,
default: false,
ipfs: {
name: 'ipfs',
priority: 10,
enforce: true,
// Include js-ipfs and js-ipfs-api
test: /\/node_modules\/(ipfs|ipfs-api)\//
}
}
}
}
})
// user interface pages with shared common libraries
const uiConfig = merge(commonConfig, {
name: 'ui',
entry: {
browserAction: './add-on/src/popup/browser-action/index.js',
pageAction: './add-on/src/popup/page-action/index.js',
uploadPage: './add-on/src/popup/quick-upload.js',
optionsPage: './add-on/src/options/options.js',
proxyAclManagerPage: './add-on/src/pages/proxy-acl/index.js',
proxyAclDialog: './add-on/src/pages/proxy-access-dialog/index.js'
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
vendors: false,
default: false,
uiCommons: {
name: 'uiCommons',
minChunks: 2,
enforce: true,
// Exclude backend dependencies (known to slow down UI due to size)
chunks: chunk => chunk.name !== 'backgroundPage'
}
}
}
}
})
// content scripts injected into tabs
const contentScriptsConfig = merge(commonConfig, {
name: 'contentScripts',
entry: {
ipfsProxyContentScriptPayload: './add-on/src/contentScripts/ipfs-proxy/page.js',
linkifyContentScript: './add-on/src/contentScripts/linkifyDOM.js',
normalizeLinksContentScript: './add-on/src/contentScripts/normalizeLinksWithUnhandledProtocols.js'
}
})
// special content script that injects window.ipfs into REAL window object
// (by default scripts executed via tabs.executeScript get a sandbox version)
const proxyContentScriptConfig = merge(commonConfig, {
name: 'proxyContentScript',
dependencies: ['contentScripts'],
entry: {
// below is just a loader for ipfsProxyContentScriptPayload
ipfsProxyContentScript: './add-on/src/contentScripts/ipfs-proxy/content.js'
},
module: {
rules: [
{
exclude: /node_modules/,
test: /\.js$/,
use: ['babel-loader']
},
{
// payload is already in bundled form, so we load raw code as-is
test: /ipfsProxyContentScriptPayload\.bundle\.js$/,
loader: 'raw-loader'
}
]
}
})
module.exports = [
bgConfig,
uiConfig,
contentScriptsConfig,
proxyContentScriptConfig
]