-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
186 lines (173 loc) · 4.45 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
const path = require('path');
const webpack = require('webpack');
const appDirectory = path.resolve(__dirname);
const isDev = (process.env.NODE_ENV === 'development');
// Enzyme as of v2.4.1 has trouble with classes
// that do not start and *end* with an alpha character
// but that will sometimes happen with the base64 hashes
// so we leave them off in the test env
const localIdentName = process.env.NODE_ENV === 'test'
? '[name]--[local]'
: '[name]--[local]--[hash:base64:5]';
const styleLoaderConfiguration = {
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader?sourceMap',
options: {
modules: {
localIdentName,
},
importLoaders: 1,
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
},
},
],
};
const babelLoaderConfiguration = {
test: /\.js$/,
include: [
// Add every directory that needs to be compiled by babel during the build
path.resolve(appDirectory, 'src'),
path.resolve(appDirectory, 'test'),
path.resolve(appDirectory, 'data'),
],
use: [
{
loader: 'babel-loader',
options: {
cacheDirectory: true,
},
},
],
};
// This is needed for webpack to import static images in JavaScript files
const imageLoaderConfiguration = {
test: /\.(gif|jpe?g|png|svg)$/,
exclude: [
/static-assets/,
/lazy-assets/,
],
type: 'asset',
generator: {
filename: '[name].[ext]',
},
};
const fontLoaderConfiguration = [
{
test: /\.eot$/,
type: 'asset',
},
{
test: /\.woff$/,
type: 'asset',
},
{
test: /\.ttf$/,
type: 'asset',
},
];
const plugins = [
// `process.env.NODE_ENV === 'production'` must be `true` for production
// builds to eliminate development checks and reduce build size. You may
// wish to include additional optimizations.
new webpack.DefinePlugin({
__DEV__: isDev,
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
process: 'process/browser.js',
}),
];
const entry = {
index: [path.join(__dirname, '/src/index')],
data: [path.join(__dirname, '/src/modules/data/index')],
print: [path.join(__dirname, '/src/modules/print/index')],
getAGPFigures: [path.join(__dirname, '/src/utils/print/plotly')],
};
const output = {
filename: '[name].js',
assetModuleFilename: '[name][ext]',
path: path.join(__dirname, '/dist/'),
};
const resolve = {
alias: {
crossfilter: 'crossfilter2',
// maps fs to a virtual one allowing to register file content dynamically
fs: 'pdfkit/js/virtual-fs.js',
// iconv-lite is used to load cid less fonts (not spec compliant)
'iconv-lite': false,
},
extensions: [
'.js',
],
fallback: {
// crypto module is not necessary at browser
crypto: false,
// fallbacks for native node libraries (required for PDFKit)
buffer: require.resolve('buffer/'),
stream: require.resolve('readable-stream'),
zlib: require.resolve('browserify-zlib'),
util: require.resolve('util/'),
assert: require.resolve('assert/')
},
};
let devtool = process.env.WEBPACK_DEVTOOL_VIZ || 'cheap-source-map';
if (process.env.WEBPACK_DEVTOOL_VIZ === false) devtool = undefined;
module.exports = {
cache: isDev,
devtool: isDev ? devtool : 'source-map',
entry,
mode: isDev ? 'development' : 'production',
module: {
rules: [
babelLoaderConfiguration,
imageLoaderConfiguration,
styleLoaderConfiguration,
...fontLoaderConfiguration,
// PDFKit extra rules
// bundle and load afm files verbatim
{ test: /\.afm$/, type: 'asset/source' },
// bundle and load binary files inside static-assets folder as base64
{
test: /static-assets/,
type: 'asset/inline',
generator: {
dataUrl: content => content.toString('base64'),
},
},
// load binary files inside lazy-assets folder as a URL
{
test: /lazy-assets/,
type: 'asset/resource'
},
// convert to base64 and include inline file system binary files used by fontkit and linebreak
{
enforce: 'post',
test: /fontkit[/\\]index.js$/,
loader: 'transform-loader',
options: {
brfs: {}
}
},
{
enforce: 'post',
test: /linebreak[/\\]src[/\\]linebreaker.js/,
loader: 'transform-loader',
options: {
brfs: {}
}
},
],
},
output,
plugins,
resolve,
};