-
Notifications
You must be signed in to change notification settings - Fork 23
/
webpack.main.config.js
165 lines (150 loc) · 3.97 KB
/
webpack.main.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
"use strict";
import * as path from "path";
import webpack from "webpack";
import "dotenv/config";
import CopyWebpackPlugin from "copy-webpack-plugin";
import { CleanWebpackPlugin } from "clean-webpack-plugin";
import { sentryWebpackPlugin } from "@sentry/webpack-plugin";
import ESLintPlugin from "eslint-webpack-plugin";
import { readFile } from 'fs/promises';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const packageJSON = JSON.parse(
await readFile(
new URL('./package.json', import.meta.url)
)
);
const dependencies = packageJSON.dependencies;
const optionalDependencies = packageJSON.optionalDependencies || {};
const outputDir = path.join(__dirname, "output");
const COMMIT_SHA = process.env.SENTRY_RELEASE || process.env.GITHUB_SHA;
//
// get a list of node dependencies, and then
// convert it to an array of package names
// this prevents some warnings like:
//
// Critical dependency: the request of a dependency is an expression
//
// and
//
// ERROR in ./src/main/fullscreen.js
// Module not found: Error: Can't resolve 'winctl'
//
// Basically, webpack falls down when you're including node modules
const deps = [].concat(
Object.keys(dependencies),
Object.keys(optionalDependencies)
);
let mainConfig = {
devtool: "inline-source-map",
mode: (process.env.NODE_ENV === "production" ? "production" : "development"),
entry: {
main: path.join(__dirname, "src", "main", "index.js")
},
experiments: {
outputModule: true,
},
externals: deps,
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"]
}
}
},
{
test: /\.node$/,
use: "node-loader"
}
]
},
node: {
__dirname: false,
__filename: false
},
optimization: {
emitOnErrors: false,
nodeEnv: (process.env.NODE_ENV === "production" ? "production" : "development")
},
output: {
filename: "[name].js",
path: outputDir,
sourceMapFilename: "[name].js.map",
chunkFormat: "module",
module: true
},
plugins: [
new ESLintPlugin({
fix: false,
configType: 'flat'
}),
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: []
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.join(__dirname, "package.json"),
to: path.join(outputDir)
},
{
from: path.join(__dirname, "src", "main", "assets"),
to: path.join(outputDir, "assets"),
},
{
from: path.join(__dirname, "src", "main", "system-savers"),
to: path.join(outputDir, "system-savers"),
}
]
})
],
resolve: {
extensions: [".js", ".json"],
fallback: {
"child_process": false,
"url": false,
"fs": false,
"path": false,
"os": false,
"stream": false,
"stream/promises": false,
}
},
target: "electron-main"
};
/**
* Adjust mainConfig for development/production settings
*/
if (process.env.NODE_ENV === "production") {
mainConfig.devtool = "source-map";
if ( process.env.SENTRY_DSN ) {
mainConfig.plugins.push(
new webpack.EnvironmentPlugin(["SENTRY_DSN"])
);
}
mainConfig.plugins.push(
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production"),
"process.env.BEFORE_DAWN_RELEASE_NAME": JSON.stringify(COMMIT_SHA),
})
);
if ( process.env.SENTRY_AUTH_TOKEN && !process.env.DISABLE_SENTRY ) {
mainConfig.plugins.push(
sentryWebpackPlugin({
include: "src",
ignoreFile: ".sentrycliignore",
ignore: ["node_modules", "webpack.config.js", "webpack.main.config.js", "webpack.renderer.config.js"],
org: "colin-mitchell",
project: "before-dawn",
authToken: process.env.SENTRY_AUTH_TOKEN,
release: COMMIT_SHA,
})
);
}
}
export default mainConfig;