-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.babel.js
69 lines (63 loc) · 1.39 KB
/
webpack.config.babel.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
import webpack from 'webpack';
import path from 'path';
import merge from 'webpack-merge';
import validate from 'webpack-validator';
import configParts from './libs/configParts';
const PATHS = {
app: path.join(__dirname, 'src'),
build: path.join(__dirname, 'build'),
style: path.join(__dirname, 'src', 'styles'),
components: path.join(__dirname, 'src', 'components'),
};
const common = {
entry: [`${PATHS.app}/main.jsx`, `${PATHS.style}/app.css`],
output: {
path: PATHS.build,
filename: 'bundle.js',
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
}),
],
module: {
loaders: [
{
test: /\.jsx?/,
exclude: /node_modules/,
loader: 'babel',
},
{
test: /\.json$/,
loader: 'json-loader',
},
{ test: /\.css$/, loader: 'style-loader!css-loader' },
],
},
resolve: {
modulesDirectories: ['node_modules'],
extensions: ['', '.js', '.jsx'],
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
},
};
let config;
// Detect how npm is run and branch based on that
switch (process.env.npm_lifecycle_event) {
case 'build':
config = merge(common, {});
break;
default:
config = merge(
common,
configParts.devServer({
host: process.env.HOST,
port: process.env.PORT,
})
);
}
module.exports = validate(config);