-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
84 lines (84 loc) · 1.89 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
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const FileManagerPlugin = require('filemanager-webpack-plugin');
const version = require('./package.json').version;
const webpack = require('webpack');
const resolve = (pathname) => path.resolve(__dirname, pathname);
const fileName = `such-mock-browser.${version}.min.js`;
module.exports = {
entry: './src/index.ts',
mode: 'development',
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules|__tests__|lib|dist|local|coverage/,
},
],
},
resolve: {
extensions: ['.ts', '.js'],
},
output: {
filename() {
return fileName;
},
path: resolve('dist'),
globalObject: 'this',
library: {
name: 'Such',
type: 'umd',
export: 'default',
},
},
externals: {
'suchjs/lib/browser': {
commonjs: 'Such',
commonjs2: 'Such',
amd: 'Such',
root: 'Such',
},
},
devServer: {
static: {
directory: resolve('examples'),
},
compress: true,
port: 9000
},
plugins: [
new webpack.DefinePlugin({
'process.env.BROWSER': process.env.BROWSER,
}),
new FileManagerPlugin({
events: {
onEnd: {
copy: [
{
source: resolve(`dist/${fileName}`),
destination: resolve('dist/such-mock-browser.min.js'),
},
{
source: resolve(`dist/${fileName}`),
destination: resolve('examples/browser/such-mock-browser.min.js'),
},
],
delete: [resolve('lib'), resolve('dist/*.LICENSE.txt')],
},
},
}),
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
mangle: true,
keep_classnames: false,
keep_fnames: false,
},
}),
],
},
};