forked from FixTweet/FxTwitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
81 lines (74 loc) · 1.73 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
const path = require('path');
const webpack = require('webpack');
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
const gitCommit = require('child_process')
.execSync('git rev-parse --short HEAD')
.toString()
.trim();
const gitBranch = require('child_process')
.execSync('git rev-parse --abbrev-ref HEAD')
.toString()
.trim();
const releaseName = `fixtweet-${gitBranch}-${gitCommit}-${new Date()
.toISOString()
.substring(0, 19)}`;
require('dotenv').config();
let envVariables = [
'BRANDING_NAME',
'BRANDING_NAME_DISCORD',
'DIRECT_MEDIA_DOMAINS',
'HOST_URL',
'REDIRECT_URL',
'EMBED_URL',
'MOSAIC_DOMAIN_LIST',
'API_HOST_LIST',
'SENTRY_DSN',
'DEPRECATED_DOMAIN_LIST',
'DEPRECATED_DOMAIN_EPOCH'
];
let plugins = [
...envVariables.map(envVar => {
return new webpack.DefinePlugin({
[envVar]: JSON.stringify(process.env[envVar])
});
}),
new webpack.DefinePlugin({
RELEASE_NAME: `'${releaseName}'`
})
];
if (process.env.SENTRY_AUTH_TOKEN) {
plugins.push(
new SentryWebpackPlugin({
release: releaseName,
include: './dist',
urlPrefix: '~/',
ignore: ['node_modules', 'webpack.config.js'],
authToken: process.env.SENTRY_AUTH_TOKEN
})
);
}
module.exports = {
entry: { worker: './src/server.ts' },
target: 'webworker',
devtool: 'source-map',
output: {
filename: '[name].js',
path: path.join(__dirname, 'dist')
},
mode: 'production',
resolve: {
extensions: ['.ts', '.tsx', '.js'],
fallback: { util: false }
},
plugins: plugins,
optimization: { mangleExports: false },
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: { transpileOnly: true }
}
]
}
};