forked from Sienci-Labs/gsender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.server.production.js
130 lines (126 loc) · 3.82 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
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 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: '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)
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.resolve(__dirname, 'index.html'),
chunksSortMode: 'dependency' // Sort chunks by dependency
}),
],
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: {
extensions: ['.js', '.jsx']
},
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
}
};