This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 975
/
webpack.config.js
198 lines (187 loc) · 5.47 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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
var webpack = require('webpack')
var WebpackNotifierPlugin = require('webpack-notifier')
var port = process.env.npm_package_config_port
var path = require('path')
var env = process.env.NODE_ENV === 'production' ? 'production'
: (process.env.NODE_ENV === 'test' ? 'test' : 'development')
function config () {
let c = {
devtool: '#source-map',
cache: true,
module: {
rules: [
{
test: /\.js?$/,
exclude: [
/node_modules/,
/\.min.js$/,
path.resolve(__dirname, 'app', 'browser', '*'),
path.resolve(__dirname, 'app', 'extensions', '*')
],
loader: 'babel-loader',
options: {
cacheDirectory: true
}
},
{
test: /\.less$/,
loader: 'style-loader!css-loader?-minimize!less-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader?-minimize'
},
// load font files with url, not data: uri since not every unicode char
// or language will be needed on every page and there are many small
// size font files
{
test: /\.woff2?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
include: path.resolve(__dirname, 'fonts'),
loader: 'file-loader',
options: {
name: '[name]-[hash].[ext]'
}
},
// inline other asset files using data: uri unless they are larger than
// a certain limit. it is implied that these files are used by all / most
// users if they are `require`d and theferore inlined to the main js bundle
{
test: /\.(woff(2)?|ttf|eot|svg|png|jpg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
exclude: path.resolve(__dirname, 'fonts'),
loader: 'url-loader',
options: {
limit: 10000
}
}
]
},
resolve: {
extensions: ['.js', '.jsx']
},
externals: {
'electron': 'chrome'
},
plugins: [
new webpack.IgnorePlugin(/^\.\/stores\/appStore$/),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
BRAVE_PORT: port
}
})
],
node: {
process: false,
__filename: true,
__dirname: true,
fs: 'empty'
}
}
if (!process.env.DISABLE_WEBPACK_NOTIFIER) {
c.plugins.push(new WebpackNotifierPlugin({title: 'Brave-' + env}))
}
return c
}
function watchOptions () {
return {
watchOptions: {
ignored: [
/node_modules/,
'test/**'
]
}
}
}
function development () { // eslint-disable-line
var dev = config()
dev.plugins.push(new webpack.HotModuleReplacementPlugin())
dev.devServer = {
contentBase: path.resolve(__dirname, 'app', 'extensions', 'brave'),
hot: true,
inline: true,
publicPath: 'http://localhost:' + port + '/gen/',
headers: { 'Access-Control-Allow-Origin': '*' }
}
return Object.assign(dev, watchOptions())
}
function production () { // eslint-disable-line
var prod = config()
var UglifyJsPlugin = require('uglifyjs-webpack-plugin')
prod.plugins.push(new webpack.optimize.OccurrenceOrderPlugin(true))
if (env !== 'test') {
prod.plugins.push(new UglifyJsPlugin({
cache: true,
parallel: true,
uglifyOptions: {
compress: {
// inline is buggy as of uglify-es 3.3.7
// https://github.com/mishoo/UglifyJS2/issues/2842
inline: 1,
warnings: false
},
mangle: {
reserved: ['module', 'exports', 'require']
}
}
}))
}
return prod
}
function test () { // eslint-disable-line
return Object.assign(production(), watchOptions())
}
function merge (config, envConfig) {
var merged = Object.assign({}, envConfig, config)
merged.plugins = (config.plugins || []).concat(envConfig.plugins || [])
// In development we overwrite the output path so the dev server serves everything from the gen subdir
if (env === 'development') {
// Note that this directory will never be created since the dev server does not write out to files
merged.output.path = path.resolve(__dirname, 'app', 'extensions', 'gen')
}
return merged
}
var app = {
target: 'web',
entry: {
app: [ path.resolve(__dirname, 'js', 'entry.js') ],
aboutPages: [ path.resolve(__dirname, 'js', 'about', 'entry.js') ],
muonTest: [ path.resolve(__dirname, 'js', 'muonTest.entry.js') ]
},
output: {
path: path.resolve(__dirname, 'app', 'extensions', 'brave', 'gen'),
filename: '[name].entry.js',
chunkFilename: '[name].chunk.js',
publicPath: './gen/'
}
}
var devTools = {
target: 'web',
entry: {
devTools: [ path.resolve(__dirname, 'js', 'devTools.js') ]
},
output: {
path: path.resolve(__dirname, 'app', 'extensions', 'brave', 'gen'),
filename: 'lib.[name].js',
publicPath: './gen/',
library: '[name]'
}
}
var webtorrentPage = {
name: 'webtorrent',
target: 'web',
entry: ['./js/webtorrent/entry.js'],
output: {
path: path.resolve(__dirname, 'app', 'extensions', 'torrent', 'gen'),
filename: 'webtorrentPage.entry.js',
publicPath: './gen/'
}
}
const envConfig = eval(env) // eslint-disable-line
module.exports = [
merge(app, envConfig()),
merge(devTools, envConfig()),
merge(webtorrentPage, envConfig())
]