forked from webpack/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
144 lines (138 loc) · 2.72 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
var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var Autoprefixer = require('autoprefixer');
var merge = require('webpack-merge');
var webpack = require('webpack');
var cwd = process.cwd();
var stylePaths = [
path.join(cwd, 'styles'),
path.join(cwd, 'components')
];
const commonConfig = {
resolve: {
extensions: ['', '.js', '.jsx', '.scss']
},
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader!eslint-loader',
include: [
path.join(__dirname, 'components')
]
},
{
test: /\.woff2?$/,
loaders: ['url-loader?prefix=font/&limit=50000&mimetype=application/font-woff']
},
{
test: /\.jpg$/,
loaders: ['file-loader']
},
{
test: /\.png$/,
loaders: ['file-loader']
},
{
test: /\.svg$/,
loaders: ['file-loader']
},
{
test: /\.html$/,
loaders: ['raw-loader']
}
]
},
eslint: {
fix: true,
configFile: require.resolve('./.eslintrc')
},
postcss: function() {
return [ Autoprefixer ];
},
sassLoader: {
includePaths: [ path.join('./styles/partials') ]
}
};
const interactiveConfig = {
resolve: {
alias: {
react: 'preact-compat',
'react-dom': 'preact-compat'
}
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
})
]
};
const developmentConfig = {
module: {
loaders: [
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader'],
include: stylePaths
},
{
test: /\.scss$/,
loaders: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader'],
include: stylePaths
}
]
}
};
const buildConfig = {
output: {
publicPath: '/'
},
plugins: [
new ExtractTextPlugin('[chunkhash].css', {
allChunks: true
})
],
module: {
loaders: [
{
test: /\.css$/,
loader: ExtractTextPlugin.extract(
'style-loader',
'css-loader'
),
include: stylePaths
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract(
'style-loader',
'css-loader!postcss-loader!sass-loader'
),
include: stylePaths
}
]
}
};
module.exports = function(env) {
switch(env) {
case 'start':
return merge(
commonConfig,
developmentConfig
);
case 'interactive':
return merge(
commonConfig,
buildConfig,
interactiveConfig
);
case 'build':
case 'lint:links':
return merge(
commonConfig,
buildConfig
);
}
};