-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
57 lines (51 loc) · 1.24 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
'use strict';
const path = require('path');
const {env} = require('process');
const dir = './client';
const isDev = env.NODE_ENV === 'development';
const dist = path.resolve(__dirname, 'dist');
const distDev = path.resolve(__dirname, 'dist-dev');
const devtool = isDev ? 'eval' : 'source-map';
const notEmpty = (a) => a;
const clean = (array) => array.filter(notEmpty);
const rules = clean([{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
}, {
test: /\.css$/,
use: [
'style-loader',
'css-loader',
'clean-css-loader',
],
}, {
test: /\.(png|gif|svg|woff|woff2|eot|ttf)$/,
use: {
loader: 'url-loader',
options: {
limit: 50_000,
},
},
}]);
module.exports = {
devtool,
entry: {
edward: `${dir}/edward.js`,
},
output: {
library: 'edward',
filename: '[name].js',
path: isDev ? distDev : dist,
pathinfo: isDev,
libraryTarget: 'var',
devtoolModuleFilenameTemplate,
},
module: {
rules,
},
};
function devtoolModuleFilenameTemplate(info) {
const resource = info.absoluteResourcePath.replace(__dirname + path.sep, '');
return `file://edward/${resource}`;
}