-
Notifications
You must be signed in to change notification settings - Fork 10
/
webpack.config.js
61 lines (58 loc) · 1.73 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
var webpack = require('webpack'),
path = require('path'),
fileSystem = require('fs'),
env = require('./utils/env'),
HtmlWebpackPlugin = require('html-webpack-plugin'),
WriteFilePlugin = require('write-file-webpack-plugin')
var config = {
entry: {
popup: path.join(__dirname, 'src', 'js', 'popup.js'),
background: path.join(__dirname, 'src', 'js', 'background.js'),
options: path.join(__dirname, 'src', 'js', 'options.js')
},
output: {
path: path.join(__dirname, 'build'),
filename: '[name].bundle.js'
},
module: {
loaders: [
{ test: /\.(js|jsx)$/, loader: 'babel' },
{ test: /\.css$/, loaders: ['style', 'css'] },
{ test: /\.(png|ttf|ogg)$/, loader: 'file-loader?name=[name].[ext]' },
{ test: /\.font\.(js|json)$/, loader: 'style!css!fontgen' }
]
},
resolve: {
extensions: ['', '.js', '.jsx', '.css', '.png', '.ogg']
},
plugins: [
// expose and write the allowed env vars on the compiled bundle
new webpack.DefinePlugin({ 'process.env': JSON.stringify(env) }),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'popup.html'),
filename: 'popup.html',
chunks: ['popup']
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'background.html'),
filename: 'background.html',
chunks: ['background']
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'options.html'),
filename: 'options.html',
chunks: ['options']
}),
new WriteFilePlugin()
]
}
if (process.env.NODE_ENV !== 'production') {
config.module.preLoaders = [
{
test: /\.(js|jsx)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
}
]
}
module.exports = config