forked from JohnEz/table-football-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
95 lines (87 loc) · 1.9 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const merge = require('webpack-merge');
const validate = require('webpack-validator');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const PATHS = {
app: path.join(__dirname, 'src'),
build: path.join(__dirname, 'build')
};
const common = {
// cache: true,
// devtool: 'inline-source-map',
// progress: true,
entry: path.join(PATHS.app, 'main.js'),
output: {
path: PATHS.build,
filename: 'bundle.js',
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
include: path.join(__dirname, 'src'),
query: {presets: ['es2015', 'react'] }
},
{
test: /\.scss$/,
loaders: ['style', 'css', 'sass'],
include: path.resolve(__dirname, 'src')
},
{
test: /\.jpg$/,
loader: 'url-loader',
include: path.resolve(__dirname, 'src/img'),
query: { mimetype: 'image/jpg' }
},
{
test: /\.png$/,
loader: 'url-loader',
include: path.resolve(__dirname, 'src/img'),
query: { mimetype: 'image/png' }
}
]
},
plugins: [
new HtmlWebpackPlugin({
title: 'Scott Logic Table Football Euros',
videoBackground: 'background.mp4',
template: 'my-index.ejs'
}),
new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
}),
new CopyWebpackPlugin([
{from: 'src/video', to: 'src/video'}
])
]
};
const production = {
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
minimize: true,
compress: {
warnings: false
},
output: {
comments: false
}
})
],
};
var config;
switch(process.env.npm_lifecycle_event) {
case 'build':
config = merge(common, production);
break;
default:
config = merge(common, {});
}
module.exports = validate(config);