-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
128 lines (112 loc) · 3.77 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
const path = require('path');
const merge = require('webpack-merge');
const webpack = require('webpack');
const NpmInstallPlugin = require('npm-install-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const TARGET = process.env.npm_lifecycle_event;
const PATHS = {
app: path.join(__dirname, './client'),
build: path.join(__dirname, './build'),
style: path.join(__dirname, './client')
};
//to configure babel-preset-react hmre
//To activate HOT Loading for development:
/*
Everytime you perform a modification, browser updates with a flash.
This means our application loses state.
It will become annoying to manipulate UI back to the sate to test seomthing.
To let the client side catch the changes and patch the code, need to use
babel-plugin-react-transform to enable hot-loading.
react-transform-hmr will swap React components one by one as they change without forcing a full refresh.
babel-preset-react-hmre is used to allow HMR for React Components
*/
process.env.BABEL_ENV = TARGET;
const common = {
// Entry accepts a path or an object of entries. We'll be using the
entry: {
app: PATHS.app,
},
watch: true,
resolve: {
extensions: ['', '.js', '.jsx'],
},
output: {
path: PATHS.build,
filename: 'bundle.js',
// publicPath: '/'
},
module: {
preloaders: [
{
test: /\.jsx?$/,
loaders: ['eslint'],
include: PATHS.app
}
],
loaders: [
{
// Test expects a RegExp! Note the slashes!
test: /\.css$/,
//css?modules enables module spec for css-loader
// loaders: ['style', 'css?modules'],
loader: 'style!css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', // Include accepts either a path or an array of pat/hs.
include: PATHS.styles,
},
// Set up jsx. This accepts js too thanks to RegExp
{
test: /\.jsx?$/,
// Enable caching for improved performance during development
// It uses default OS directory by default. If you need something
// more custom, pass a path to it. I.e., babel?cacheDirectory=<path>
loaders: ['babel?cacheDirectory'],
//load babel-loader for ES6 module definition based code to turn into ES5 bundles
// Parse only app files! Without this it will go through entire project.
// In addition to being slow, that will most likely result in an error.
include: PATHS.app,
},
{
test: /\.(png|jpg|jpeg|gif|woff)$/,
loader: 'url-loader?limit=65000'
}
]
},
devtool: 'source-map',
};
// Default configuration. We will return this if
// Webpack is called outside of npm.
if(TARGET === 'start' || !TARGET) {
module.exports = merge(common, {
devServer: {
contentBase: PATHS.build,
// Enable history API fallback so HTML5 History API based
// routing works. This is a good default that will come
// in handy in more complicated setups.
historyApiFallback: true,
hot: true,
inline: true,
progress: true,
// Display only errors to reduce the amount of output.
stats: 'errors-only',
// Parse host and port from env so this is easy to customize.
//
// If you use Vagrant or Cloud9, set
// host: process.env.HOST || '0.0.0.0';
//
// 0.0.0.0 is available to all network devices unlike default
// localhost
host: process.env.HOST,
port: process.env.PORT || 3450
},
plugins: [
new ExtractTextPlugin('styles.css', { allChunks: true }),
new webpack.HotModuleReplacementPlugin(),
new NpmInstallPlugin({
save: true// --save
})
],
devtool: 'source-map',
});
}
if (TARGET === 'build') {
module.exports = merge(common, {});
}