forked from stream-labs/desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.config.js
187 lines (172 loc) · 4.97 KB
/
base.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
const path = require('path');
const { CheckerPlugin } = require('awesome-typescript-loader');
const webpack = require('webpack');
const cp = require('child_process');
const ManifestPlugin = require('webpack-manifest-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const plugins = process.env.SLOBS_FORKED_TYPECHECKING ? [new CheckerPlugin()] : [];
const commit = cp
.execSync('git rev-parse --short HEAD')
.toString()
.replace('\n', '');
plugins.push(
new webpack.DefinePlugin({
SLOBS_BUNDLE_ID: JSON.stringify(commit),
}),
);
plugins.push(
new ManifestPlugin({
filter: file => file.isChunk,
}),
);
plugins.push(new CleanWebpackPlugin());
// uncomment and install to watch circular dependencies
// const CircularDependencyPlugin = require('circular-dependency-plugin');
// plugins.push(new CircularDependencyPlugin({
// // exclude detection of files based on a RegExp
// exclude: /a\.js|node_modules/,
// // add errors to webpack instead of warnings
// //failOnError: true
// }));
// uncomment and install to analyze bundle size
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// plugins.push(new BundleAnalyzerPlugin());
module.exports = {
output: {
path: __dirname + '/bundles',
filename: '[name].js',
},
target: 'electron-renderer',
resolve: {
extensions: ['.js', '.ts', '.json', '.tsx'],
modules: [path.resolve(__dirname, 'app'), 'node_modules'],
symlinks: false,
},
// We want to dynamically require native addons
externals: {
'font-manager': 'require("font-manager")',
// Not actually a native addons, but for one reason or another
// we don't want them compiled in our webpack bundle.
'aws-sdk': 'require("aws-sdk")',
asar: 'require("asar")',
'backtrace-node': 'require("backtrace-node")',
'node-fontinfo': 'require("node-fontinfo")',
'socket.io-client': 'require("socket.io-client")',
rimraf: 'require("rimraf")',
'backtrace-js': 'require("backtrace-js")',
request: 'require("request")',
archiver: 'require("archiver")',
'@streamlabs/game-overlay': 'require("@streamlabs/game-overlay")',
'extract-zip': 'require("extract-zip")',
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
include: [path.resolve(__dirname, 'app/components'), path.resolve(__dirname, 'updater')],
options: {
esModule: true,
transformToRequire: {
video: 'src',
source: 'src',
},
loaders: { ts: 'awesome-typescript-loader' },
},
},
{
test: /\.ts$/,
loader: 'awesome-typescript-loader',
options: { useCache: true, reportFiles: ['app/**/*.ts'] },
exclude: /node_modules|vue\/src/,
},
{
test: /\.tsx$/,
include: path.resolve(__dirname, 'app/components'),
loader: [
'babel-loader',
{
loader: 'awesome-typescript-loader',
options: {
useCache: true,
reportFiles: ['app/components/**/*.tsx'],
configFileName: 'tsxconfig.json',
instance: 'tsx-loader',
},
},
],
exclude: /node_modules/,
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.m\.less$/, // Local style modules
include: path.resolve(__dirname, 'app/components'),
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
camelCase: true,
localIdentName: '[local]___[hash:base64:5]',
modules: true,
importLoaders: 1,
},
},
{ loader: 'less-loader' },
],
},
{
test: /\.g\.less$/, // Global styles
include: [
path.resolve(__dirname, 'app/app.g.less'),
path.resolve(__dirname, 'app/themes.g.less'),
],
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
},
},
'less-loader',
],
},
{
test: /\.(png|jpe?g|gif|svg|mp4|ico|wav|webm)(\?.*)?$/,
loader: 'file-loader',
options: {
name: '[name]-[hash].[ext]',
outputPath: 'media/',
publicPath: 'bundles/media/',
},
},
// Handles custom fonts. Currently used for icons.
{
test: /\.woff$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: 'bundles/fonts/',
},
},
// Used for loading WebGL shaders
{
test: /\.(vert|frag)$/,
loader: 'raw-loader',
},
],
},
optimization: {
splitChunks: {
chunks: chunk => chunk.name === 'renderer',
},
moduleIds: 'hashed',
},
plugins,
};