-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.base.js
68 lines (61 loc) · 2.47 KB
/
webpack.config.base.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
// Copyright (c) 2015-2016 Yuya Ochiai
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const childProcess = require('child_process');
const path = require('path');
// const {
// sentryWebpackPlugin,
// } = require('@sentry/webpack-plugin');
const webpack = require('webpack');
const VERSION = childProcess.execSync('git rev-parse --short HEAD', {cwd: __dirname}).toString();
const isProduction = process.env.NODE_ENV === 'production';
const isTest = process.env.NODE_ENV === 'test';
const isRelease = process.env.GITHUB_WORKFLOW && process.env.GITHUB_WORKFLOW.startsWith('release');
const codeDefinitions = {
__HASH_VERSION__: !isRelease && JSON.stringify(VERSION),
__CAN_UPGRADE__: isTest || JSON.stringify(process.env.CAN_UPGRADE === 'true'),
__IS_NIGHTLY_BUILD__: JSON.stringify(process.env.GITHUB_WORKFLOW && process.env.GITHUB_WORKFLOW.startsWith('nightly')),
__IS_MAC_APP_STORE__: JSON.stringify(process.env.IS_MAC_APP_STORE === 'true'),
__SKIP_ONBOARDING_SCREENS__: JSON.stringify(process.env.MM_DESKTOP_BUILD_SKIPONBOARDINGSCREENS === 'true'),
__DISABLE_GPU__: JSON.stringify(process.env.MM_DESKTOP_BUILD_DISABLEGPU === 'true'),
};
codeDefinitions['process.env.NODE_ENV'] = JSON.stringify(process.env.NODE_ENV);
if (isTest) {
codeDefinitions['process.resourcesPath'] = 'process.env.RESOURCES_PATH';
}
module.exports = {
mode: isProduction ? 'production' : 'development',
bail: true,
plugins: [
new webpack.DefinePlugin(codeDefinitions),
// sentryWebpackPlugin({
// disable: !isProduction,
// authToken: process.env.SENTRY_AUTH_TOKEN,
// org: 'sentry',
// project: 'desktop',
// url: 'https://sentry-kchat.infomaniak.com/',
// }),
],
devtool: 'source-map',
module: {
rules: [{
test: /\.(js|jsx|ts|tsx)?$/,
exclude: /node_modules/,
loader: 'babel-loader',
}],
},
resolve: {
modules: [
'node_modules',
'./src',
],
alias: {
renderer: path.resolve(__dirname, 'src/renderer'),
main: path.resolve(__dirname, './src/main'),
app: path.resolve(__dirname, './src/app'),
common: path.resolve(__dirname, './src/common'),
static: path.resolve(__dirname, './src/assets'),
},
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
},
};