-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
107 lines (103 loc) · 1.76 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
'use strict';
const path = require('path');
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const fullPath = path.resolve.bind(null, __dirname);
/**
*
*/
module.exports = {
entry: {
panel: [
//'babel-polyfill',
'./src/panel/index',
'./css/panel/index.scss'
],
container: [
//'babel-polyfill',
'./src/container/index',
'./css/container/index.scss'
],
helpers: [
//'babel-polyfill',
'./src/helpers/index',
'./css/helpers/index.scss'
],
options: [
//'babel-polyfill',
'./src/options/index',
'./css/options/index.scss'
],
background: [
//'babel-polyfill',
'./src/background/index'
],
devtools: [
//'babel-polyfill',
'./src/devtools/index'
]
},
output: {
path: fullPath('dist'),
publicPath: 'dist',
filename: '[name].js'
},
devtool: 'source-map',
devServer: {
historyApiFallback: true
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
include: [
fullPath('src')
]
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style', [
'css?-url&sourceMap',
'postcss',
'sass?sourceMap'
]),
include: [
fullPath('css')
]
},
{
test: /\.json$/,
loader: 'json'
}
]
},
postcss: function() {
return [
autoprefixer({
browsers: [
'ie >= 8',
'ie_mob >= 10',
'ff >= 20',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
]
})
];
},
plugins: [
new ExtractTextPlugin('[name].css', {
allChunks: true
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'common',
filename: 'common.js',
minChunks: 2
})
]
};