-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.dev.js
145 lines (142 loc) · 3.86 KB
/
webpack.config.dev.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
var webpack = require('webpack');
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CleanWebpackPlugin = require('clean-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry : {
popup : [
/**
* NOT CURRENTLY USED FOR CHROME EXTENSION DEV ENV / DEBUGGING WORKFLOW
//'webpack-dev-server/client?http://0.0.0.0:8080', // WebpackDevServer host and port
//'webpack/hot/only-dev-server',
*/
'./src/popup/index.jsx'
],
options : [ './src/options/index.js' ],
background: [ './src/bg/background.js' ]
},
devtool: process.env.WEBPACK_DEVTOOL || 'source-map',
output : {
publicPath: 'chrome-extension://hnmobfjkgmmmolahogkmakmcdfljhafh/',
path : path.join(__dirname, 'dist'),
filename: '[name]/[name].bundle.js'
},
resolve: {
extensions: [ '', '.js', '.jsx' ]
},
module : {
loaders: [
{
test : /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
//loaders: ['react-hot', 'babel'],
loaders: [ 'babel' ],
},
{
test : /\.less$/,
loaders: [
'style?sourceMap',
'css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]',
'resolve-url',
'less'
]
},
{
test : /\.css$/,
loaders: [
'style?sourceMap',
'css?modules&importLoaders=1&localIdentName=[path]___[name]__[local]___[hash:base64:5]'
]
},
// {
// test : /\.less$/,
// loaders: [
// 'style?sourceMap',
// 'css',
// 'resolve-url',
// 'less'
// ]
// },
// {
// test : /\.css$/,
// loader: 'style!css'
// },
{
test : /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: "file?name=[name]-[hash].[ext]"
},
{
test : /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?prefix=font/&limit=5000&name=[name]-[hash].[ext]"
},
{
test : /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=10000&mimetype=application/octet-stream&name=[name]-[hash].[ext]"
},
{
test : /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: "url?limit=10000&mimetype=image/svg+xml&name=[name]-[hash].[ext]"
},
{
test : /\.gif/,
loader: "url-loader?limit=10000&mimetype=image/gif"
},
{
test : /\.jpg/,
loader: "url-loader?limit=10000&mimetype=image/jpg"
},
{
test : /\.png/,
loader: "url-loader?limit=10000&mimetype=image/png"
}
]
},
/**
* NOT CURRENTLY USED FOR CHROME EXTENSION DEV ENV / DEBUGGING WORKFLOW
//devServer: {
// //contentBase: "./",
// noInfo: true, // --no-info option
// hot: true,
// inline: true
//},
*/
plugins: [
new webpack.NoErrorsPlugin(),
new CleanWebpackPlugin([ 'dist' ]),
new CopyWebpackPlugin([
{ from: 'manifest.json' },
{
from: 'icons', to: 'icons'
},
{
from: '_locales', to: '_locales'
},
{
from: 'src/options_custom',
to : 'options'
}
]),
//new HtmlWebpackPlugin({
// filename: 'options/options.html',
// chunks: ['options'],
// template: 'src/options_custom/index.html',
// inject: 'head'
//}),
/*
* Instead of using file loader in index.jsx:1 we could use this plugin
* with a custom template that contains the app render element target (e.g. #myApp)
*/
//new HtmlWebpackPlugin({
// filename: 'popup/popup.html',
// chunks: ['popup'],
// inject: 'head',
// template: 'src/popup.jsx'
//}),
new HtmlWebpackPlugin({
filename: 'background/background.html',
chunks : [ 'background' ],
inject : 'head'
}),
]
};