forked from brave/browser-laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
131 lines (123 loc) · 3.11 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
/* 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'),
path.resolve(__dirname, 'app', 'content', 'scripts')
],
loader: 'babel'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
// 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)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
},
resolve: {
extensions: ['', '.js', '.jsx']
},
plugins: [
new WebpackNotifierPlugin({title: 'Brave-' + env}),
new webpack.IgnorePlugin(/^\.\/stores\/appStore$/),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(env),
BRAVE_PORT: port
}
})
],
node: {
__filename: true,
__dirname: true
}
}
}
function development () {
var dev = config()
dev.devServer = {
publicPath: 'http://localhost:' + port + '/gen/'
}
return dev
}
function production () {
var prod = config()
prod.plugins.push(new webpack.optimize.DedupePlugin())
prod.plugins.push(new webpack.optimize.OccurrenceOrderPlugin(true))
prod.plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
mangle: {
except: ['module', 'exports', 'require']
}
}))
return prod
}
function merge (config, env) {
var merged = Object.assign({}, config, env)
merged.plugins = (config.plugins || []).concat(env.plugins || [])
return merged
}
var app = {
name: 'app',
target: 'electron',
entry: ['./js/entry.js'],
output: {
path: path.resolve(__dirname, 'app', 'gen'),
filename: 'app.entry.js',
publicPath: './gen/'
}
}
var aboutPages = {
name: 'about',
target: 'web',
entry: ['./js/about/entry.js'],
output: {
path: path.resolve(__dirname, 'app', 'gen'),
filename: 'aboutPages.entry.js',
publicPath: './gen/'
}
}
module.exports = {
development: [
merge(app, development()),
merge(aboutPages, development())
],
production: [
merge(app, production()),
merge(aboutPages, production())
],
test: [
merge(app, production()),
merge(aboutPages, production())
]
}[env]