forked from VCityTeam/UD-Viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
65 lines (62 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
var path = require('path');
var webpack = require('webpack');
var commonConfig = require('./webpack-common.config.js');
var definePlugin = new webpack.DefinePlugin({
__DEBUG__: JSON.stringify(process.env.NODE_ENV === 'development'),
});
module.exports = {
entry: {
udvcore: ['es6-promise', path.resolve(__dirname, 'src/Main.js')]
},
devtool: 'source-map',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: '[name]',
libraryTarget: 'umd',
umdNamedDefine: true,
},
plugins: [
definePlugin,
new webpack.optimize.CommonsChunkPlugin({ name: 'udvcore' }),
],
module: {
rules: [
{
test: /\.js$/,
include: [
path.resolve(__dirname, 'src'),
],
loader: 'babel-loader',
// Please consider modifying .babelrc too
// .babelrc is used for transpiling src/ into lib/ in the prepublish
// phase, see package.json
options: {
presets: ['env'],
plugins: ['transform-runtime'],
babelrc: false,
},
},
{
// We also want to (web)pack the style files:
test:/\.css$/,
use:['style-loader','css-loader']
},
{
// (web)pack "small" images
test: /\.(png|gif)$/,
use: [{
loader: 'url-loader',
options: {
limit: 100000, // Convert images < 100kb to base64 strings
name: 'images/[hash]-[name].[ext]'
}
}]
},
commonConfig.jsonLoader,
],
},
devServer: {
publicPath: '/dist/',
},
};