-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
88 lines (78 loc) · 1.82 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
/* eslint-disable strict */
'use strict';
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const pkg = require('./package');
const ROOT = __dirname;
const BUILD_DATE = new Date();
const banner = env => `/**!
* @build-info ${env} - ${BUILD_DATE}
* @name ${pkg.name}
* @version ${pkg.version}
* @author ${pkg.author}
* @description ${pkg.description}
* @contributors [
* ${pkg.contributors.join('\n * ')}
* ]
* @homepage ${pkg.homepage}
* @keywords [ ${pkg.keywords.join(', ')} ]
* @license ${pkg.license}
**/`;
const config = ({ ENV } = {}) => ({
mode: ENV,
target: 'web',
devtool: 'source-map',
context: path.join(ROOT, 'src'),
externals: [nodeExternals()],
entry: {
[pkg.name]: [`./${pkg.name}.ts`],
},
output: {
libraryTarget: 'commonjs2',
path: path.join(ROOT, 'dist'),
filename: `[name].${ENV}.js`,
},
module: {
rules: [
{
enforce: 'pre',
test: /\.tsx?$/,
loader: 'eslint-loader',
exclude: /node_modules/,
options: {
emitWarning: ENV === 'development',
},
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
{
loader: 'awesome-typescript-loader',
options: {},
},
],
},
],
},
resolve: {
extensions: ['.ts', '.js'],
},
plugins: [
new webpack.BannerPlugin({
banner: banner(ENV),
raw: true,
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(ENV),
}),
],
});
module.exports = () => {
const tasks = [].concat(config({ ENV: 'development' }));
if (process.env.NODE_ENV === 'production') {
tasks.push(config({ ENV: 'production' }));
}
return Promise.resolve(tasks);
};