forked from brave/browser-laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
166 lines (155 loc) · 4.08 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
/* 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 () {
return {
devtool: '#source-map',
cache: true,
module: {
loaders: [
{
test: /\.js?$/,
exclude: [
/node_modules/,
/\.min.js$/,
path.resolve(__dirname, 'app', 'browser', '*'),
path.resolve(__dirname, 'app', 'extensions', '*')
],
loader: 'babel'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader?-minimize!less-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader?-minimize'
},
{
test: /\.json$/,
loader: 'json'
},
// Loads font files for Font Awesome
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&minetype=application/font-woff'
},
{
test: /\.(ttf|eot|svg|png|jpg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
},
resolve: {
extensions: ['', '.js', '.jsx']
},
externals: {
'electron': 'chrome'
},
plugins: [
new WebpackNotifierPlugin({title: 'Brave-' + env}),
new webpack.IgnorePlugin(/^\.\/stores\/appStore$/),
new webpack.IgnorePlugin(/^spellchecker/),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
BRAVE_PORT: port
}
})
],
node: {
process: false,
__filename: true,
__dirname: true,
fs: 'empty'
}
}
}
function watchOptions () {
return {
watchOptions: {
ignored: [
/node_modules/,
'test/**'
]
}
}
}
function development () { // eslint-disable-line
var dev = config()
dev.devServer = {
publicPath: 'http://localhost:' + port + '/gen/',
headers: { 'Access-Control-Allow-Origin': '*' }
}
return Object.assign(dev, watchOptions())
}
function production () { // eslint-disable-line
var prod = config()
prod.plugins.push(new webpack.optimize.DedupePlugin())
prod.plugins.push(new webpack.optimize.OccurrenceOrderPlugin(true))
if (env !== 'test') {
prod.plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
mangle: {
except: ['module', 'exports', 'require']
}
}))
}
return prod
}
function test () { // eslint-disable-line
return Object.assign(production(), watchOptions())
}
function merge (config, env) {
var merged = Object.assign({}, env, config)
merged.plugins = (config.plugins || []).concat(env.plugins || [])
return merged
}
var app = {
target: 'web',
entry: {
app: [ path.resolve(__dirname, 'js', 'entry.js') ],
aboutPages: [ path.resolve(__dirname, 'js', 'about', 'entry.js') ]
},
output: {
path: path.resolve(__dirname, 'app', 'extensions', 'brave', 'gen'),
filename: '[name].entry.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())
]