-
Notifications
You must be signed in to change notification settings - Fork 48
/
webpack.config.server.production.js
163 lines (158 loc) · 5.48 KB
/
webpack.config.server.production.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
const crypto = require('crypto');
const path = require('path');
const boolean = require('boolean');
const dotenv = require('dotenv');
const TerserPlugin = require('terser-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const { sentryWebpackPlugin } = require('@sentry/webpack-plugin');
const babelConfig = require('./babel.config');
const pkg = require('./package.json');
dotenv.config({
path: path.resolve('webpack.config.server.production.env')
});
const USE_ESLINT_LOADER = boolean(process.env.USE_ESLINT_LOADER);
const USE_TERSER_PLUGIN = boolean(process.env.USE_TERSER_PLUGIN);
// Use publicPath for production
const payload = pkg.version;
const publicPath = ((payload) => {
const algorithm = 'sha1';
const buf = String(payload);
const hash = crypto.createHash(algorithm).update(buf).digest('hex');
return '/' + hash.substr(0, 8) + '/'; // 8 digits
})(payload);
const buildVersion = pkg.version;
module.exports = {
mode: 'production',
devtool: 'source-map',
// devtool: 'cheap-module-source-map',
target: 'node', // ignore built-in modules like path, fs, etc.
context: path.resolve(__dirname, 'src/server'),
entry: {
index: [
'./index.js'
]
},
output: {
path: path.resolve(__dirname, 'dist/gsender/server'),
filename: '[name].js',
libraryTarget: 'commonjs2'
},
optimization: {
minimizer: [
USE_TERSER_PLUGIN && (
new TerserPlugin()
),
].filter(Boolean)
},
plugins: [
new webpack.DefinePlugin({
'global.NODE_ENV': JSON.stringify('production'),
'global.PUBLIC_PATH': JSON.stringify(publicPath),
'global.BUILD_VERSION': JSON.stringify(buildVersion),
'global.METRICS_ENDPOINT': JSON.stringify(process.env.METRICS_ENDPOINT),
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.resolve(__dirname, 'index.html'),
chunksSortMode: 'dependency' // Sort chunks by dependency
}),
sentryWebpackPlugin({
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
telemetry: false
}),
],
module: {
rules: [
USE_ESLINT_LOADER && {
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
test: /\.hex$/,
loader: 'file-loader'
},
{
test: /\.hex$/,
loader: 'file-loader',
include: [
path.resolve(__dirname, 'src/server/lib/Firmware/Flashing')
]
},
{
test: /\.hex$/,
loader: 'raw-loader'
},
{
test: /\.hex$/,
loader: 'raw-loader',
include: [
path.resolve(__dirname, 'src/server/lib/Firmware/Flashing')
]
},
{
test: /\.txt$/,
loader: 'file-loader'
},
{
test: /\.txt$/,
loader: 'raw-loader',
include: [
path.resolve(__dirname, 'src/server/lib/Firmware/Flashing')
]
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
options: babelConfig,
exclude: /node_modules/
}
].filter(Boolean)
},
externals: [nodeExternals()], // ignore all modules in node_modules folder
resolve: {
modules: [
path.resolve(__dirname, 'src'),
'node_modules'
],
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
alias: {
// Alias paths so that e.g. "../../components/File" becomes "Components/File"
Actions: path.resolve(__dirname, './src/app/actions'),
Atoms: path.resolve(__dirname, './src/app/atoms'),
APIs: path.resolve(__dirname, './src/app/apis'),
Components: path.resolve(__dirname, './src/app/components'),
Containers: path.resolve(__dirname, './src/app/containers'),
Constants: path.resolve(__dirname, './src/app/constants'),
Contexts: path.resolve(__dirname, './src/app/contexts'),
Hooks: path.resolve(__dirname, './src/app/hooks'),
Images: path.resolve(__dirname, './src/app/images'),
Models: path.resolve(__dirname, './src/app/models'),
Reducers: path.resolve(__dirname, './src/app/reducers'),
Routes$: path.resolve(__dirname, './src/app/routes'),
Styles: path.resolve(__dirname, './src/app/styles'),
Types: path.resolve(__dirname, './src/app/types'),
Utils: path.resolve(__dirname, './src/app/utils'),
Views: path.resolve(__dirname, './src/app/views')
}
},
resolveLoader: {
modules: [
path.resolve(__dirname, 'node_modules')
]
},
node: {
console: true,
global: true,
process: true,
Buffer: true,
__filename: true, // Use relative path
__dirname: true, // Use relative path
setImmediate: true
}
};