forked from Sienci-Labs/gsender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.server.development.js
116 lines (112 loc) · 3.93 KB
/
webpack.config.server.development.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
const crypto = require('crypto');
const path = require('path');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');
const dotenv = require('dotenv');
const babelConfig = require('./babel.config');
const pkg = require('./package.json');
dotenv.config({
path: path.resolve('webpack.config.server.development.env')
});
// 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: 'development',
devtool: 'cheap-module-eval-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, 'output/server'),
filename: '[name].js',
libraryTarget: 'commonjs2'
},
plugins: [
new webpack.DefinePlugin({
'global.NODE_ENV': JSON.stringify('development'),
'global.PUBLIC_PATH': JSON.stringify(publicPath),
'global.BUILD_VERSION': JSON.stringify(buildVersion),
'global.METRICS_ENDPOINT': JSON.stringify(process.env.METRICS_ENDPOINT),
'process.env': JSON.stringify(process.env),
})
],
module: {
rules: [
{
test: /\.hex$/,
loader: 'file-loader'
},
{
test: /\.hex$/,
loader: 'file-loader',
include: [
path.resolve(__dirname, 'src/server/lib/FirmwareFlashing')
]
},
{
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
options: babelConfig,
exclude: /node_modules/
}
]
},
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
}
};