forked from Lobos/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.test.js
38 lines (36 loc) · 1.14 KB
/
webpack.config.test.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
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'inline-source-map',
context: path.resolve(__dirname, 'test'),
entry: ['webpack-hot-middleware/client',
'mocha!./index.js'],
output: {
path: path.join(__dirname, 'test'),
filename: 'static/testBundle.js',
publicPath: '/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
externals: {
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true
},
module: {
loaders: [{
test: /\.jsx?$/, loaders: ['babel'],
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'test'),
path.resolve(__dirname, 'node_modules/refetch')
]
},
{test: /\.(css|less)$/, loader: 'style-loader!css-loader?localIdentName=[hash:base64:8]!less-loader'},
{test: /\.(ttf|eot|woff|woff2|otf|svg)/, loader: 'file-loader?name=./font/[name].[ext]'},
{test: /\.json$/, loader: 'file-loader?name=./json/[name].json'},
{test: /\.(png|jpg|jpeg|gif)$/, loader: 'url-loader?limit=10000&name=./images/[name].[ext]'}
]
}
};