-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
153 lines (139 loc) · 4.29 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const CopyPlugin = require('copy-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
function createBanner(withTzdbVersion = true, fileSuffix = ''){
const packageJson = require('./package.json');
const tzdbLatest = require('./data/unpacked/latest');
const version = withTzdbVersion ?
`//! @version ${packageJson.name}-${packageJson.version}-${tzdbLatest.version}${fileSuffix}\n` :
`//! @version ${packageJson.name}-${packageJson.version}\n`;
const preamble = fs.readFileSync('./src/license-preamble.js', 'utf8');
return version + preamble;
}
const externals = {
'js-joda': {
amd: 'js-joda',
commonjs: 'js-joda',
commonjs2: 'js-joda',
root: 'JSJoda'
}
};
const moduleConfig = {
rules: [{
use: [{loader: 'babel-loader'}],
resource: {
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'test')
],
test: /.js$/
},
}]
};
const optimization = {
minimizer: [
new UglifyJsPlugin({
uglifyOptions: {
output: {
comments: false,
},
}
})
]
};
const bannerPlugin = (withTzdbVersion, fileSuffix) =>
new webpack.BannerPlugin(
{banner: createBanner(withTzdbVersion, fileSuffix), raw: true}
);
const output = {
path: __dirname + '/dist',
libraryTarget: 'umd',
library: 'JSJodaTimezone',
globalObject: 'this',
};
const getProductionConfig = (fileSuffix) => ({
mode: 'production',
context: __dirname,
entry: './src/js-joda-timezone.js',
devtool: false,
output: Object.assign({}, output,
{ filename: `js-joda-timezone${fileSuffix}.min.js` }
),
externals,
module: moduleConfig,
optimization,
plugins: [
bannerPlugin(true, fileSuffix),
// replace the import in `src/tzdbData.js`
// with a link to the data file we want to reference
new webpack.NormalModuleReplacementPlugin(
/data\/packed\/latest.json/,
require.resolve(`./data/packed/latest${fileSuffix}`)
),
// generate a `.d.ts` file for the bundle also
new CopyPlugin([{
from: './dist/js-joda-timezone.d.ts',
to: `./js-joda-timezone${fileSuffix}.d.ts`,
}]),
],
});
const getDevelopmentConfig = (fileSuffix) => ({
mode: 'development',
context: __dirname,
entry: './src/js-joda-timezone.js',
devtool: 'hidden-source-map',
output: Object.assign({}, output,
{ filename: `js-joda-timezone${fileSuffix}.js` }
),
externals,
module: moduleConfig,
plugins: [
bannerPlugin(true, fileSuffix),
new webpack.NormalModuleReplacementPlugin(
/data\/packed\/latest.json/,
require.resolve(`./data/packed/latest${fileSuffix}`)
),
],
});
// find all packed data files produced by our `transform-data.js` script
const dataFileRegex = /^latest(.*)\.json/;
const dataFileSuffixes = fs.readdirSync('./data/packed')
.filter(fileName => fileName.match(dataFileRegex))
.map(fileName => fileName.match(dataFileRegex)[1]);
// and add a config to produce a development and prod bundle for each
const productionConfigs = dataFileSuffixes.map(getProductionConfig);
const developmentConfigs = dataFileSuffixes.map(getDevelopmentConfig);
const productionConfigEmpty = {
mode: 'production',
context: __dirname,
entry: './src/js-joda-timezone-empty.js',
devtool: false,
output: Object.assign({}, output,
{ filename: 'js-joda-timezone-empty.min.js' }
),
externals,
module: moduleConfig,
optimization,
plugins: [bannerPlugin(false)],
};
const developmentConfigEmpty = {
mode: 'development',
context: __dirname,
entry: './src/js-joda-timezone-empty.js',
devtool: 'hidden-source-map',
output: Object.assign({}, output,
{ filename: 'js-joda-timezone-empty.js' }
),
externals,
module: moduleConfig,
plugins: [bannerPlugin(false)],
};
const config = [
...developmentConfigs,
...productionConfigs,
developmentConfigEmpty,
productionConfigEmpty,
];
module.exports = config;