forked from arvindkumarc/react-horizontal-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.prod.js
executable file
·71 lines (69 loc) · 1.73 KB
/
webpack.config.prod.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
/**
* WEBPACK CONFIG FOR PRODUCTION USE
*/
/* eslint-disable no-var */
// var webpack = require('webpack');
var path = require('path');
var loaders = [
// **IMPORTANT** This is needed so that each bootstrap js file required by
// bootstrap-webpack has access to the jQuery object
{
test: /bootstrap\/js\//,
loader: 'imports?jQuery=jquery'
},
// Babel enables the use of ES6 today by transpiling your ES6 JavaScript into equivalent ES5 source
// that is actually delivered to the end user browser.
{
test: /\.jsx?$/,
loaders: [ 'babel' ],
include: path.join(__dirname, 'src')
},
// css etc required to run bootstrap
{
test: /\.css$/,
loader: 'style-loader!css-loader',
include: path.join(__dirname, 'src/')
},
{
test: /\.woff2?(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url?limit=10000&mimetype=application/font-woff'
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url?limit=10000&mimetype=application/octet-stream'
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file'
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url?limit=10000&mimetype=image/svg+xml'
}
];
module.exports = {
entry: [
'./src/Components/HorizontalTimeline.jsx'
],
// If you pass an array - the modules are loaded on startup. The last one is exported.
output: {
path: (__dirname, 'dist'),
filename: 'react-horizontal-timeline.js',
libraryTarget: 'commonjs2'
},
// Array of file extensions used to resolve modules.
resolve: {
extensions: [ '', '.js', '.jsx' ]
},
externals: {
react: 'react',
'react-dom': 'react-dom',
'react-motion': 'react-motion',
radium: 'radium',
jquery: 'jquery'
},
plugins: [],
module: {
loaders: loaders
}
};