forked from cncjs/cncjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.server.production.js
91 lines (87 loc) · 2.61 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
const crypto = require('crypto');
const path = require('path');
const boolean = require('boolean');
const dotenv = require('dotenv');
const TerserPlugin = require('terser-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/cncjs/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)
})
],
module: {
rules: [
USE_ESLINT_LOADER && {
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
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
}
};