forked from zxing-js/library
-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
135 lines (116 loc) · 3.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
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
125
126
127
128
129
130
131
132
133
134
135
// helpers
const camelCaseToDash = (str) => str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
const dashToCamelCase = (str) => str.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
const toUpperCase = (str) => `${str.charAt(0).toUpperCase()}${str.substr(1)}`;
const pascalCase = (str) => toUpperCase(dashToCamelCase(str));
// webpack requires
const webpack = require('webpack');
const {
removeEmpty
} = require('webpack-config-utils');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
// common requires
const {
resolve
} = require('path');
/**
* this is equal to 'webpack --env=dev'
*
* @see https://webpack.js.org/configuration/configuration-types/#exporting-a-function-to-use-env
*/
const config = (env, argv) => {
const mode = argv.mode;
const isProd = mode === 'production';
const ifProd = (whenProd, whenNot) => (isProd ? whenProd : whenNot);
/**
* Configuration for Universal Module Definition bundling.
*/
return [{
/**
* These are the entry point of our library. We tell webpack to use
* the name we assign later, when creating the bundle. We also use
* the name to filter the second entry point for applying code
* minification via UglifyJS
*/
entry: {
[`index${ifProd('.min', '')}`]: ['./src/index.ts'],
},
/**
* The output defines how and where we want the bundles. The special
* value `[name]` in `filename` tell Webpack to use the name we defined above.
*/
output: {
path: resolve(__dirname, 'umd'),
// module format
libraryTarget: 'umd',
// library name to be used in browser (e.g. `window.ZXing`).
library: 'ZXing',
// will name the AMD module of the UMD build. Otherwise an anonymous define is used.
umdNamedDefine: true
},
/**
* Add resolve for `ts` files, otherwise Webpack would
* only look for common JavaScript file extension (.js)
*/
resolve: {
extensions: ['.ts'],
},
/**
* Optimizations Webpack shall apply.
*/
optimization: {
splitChunks: {
chunks: 'all'
}
},
/**
* Activate source maps for the bundles in order to preserve the original
* source when the user debugs the application
*/
devtool: 'source-map',
/**
* Plugins to be used by webpack.
*/
plugins: removeEmpty([
/**
* Enable scope hoisting.
*/
new webpack.optimize.ModuleConcatenationPlugin(),
/**
* Apply minification only on the second bundle by
* using a RegEx on the name, which must end with `.min.js`
*/
ifProd(
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
compress: true,
output: {
comments: false
}
}
})
),
/**
* Plugin for defining environment variables.
*/
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: mode
},
}),
]),
/**
* Defines module packing configuration, I guess
*/
module: {
rules: [{
test: /\.ts?$/,
include: /src/,
exclude: /src\/test/,
loader: 'awesome-typescript-loader',
}],
},
}];
};
module.exports = config;