From ddba91958563e68797f226039581e6ea77ad4411 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Tue, 27 May 2025 12:11:17 -0400 Subject: [PATCH] refactor: rename main to index Signed-off-by: Adam Setch --- config/webpack.config.main.base.ts | 2 +- src/main/{main.ts => index.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/main/{main.ts => index.ts} (100%) diff --git a/config/webpack.config.main.base.ts b/config/webpack.config.main.base.ts index 7bff5e9f3..f4f0a1143 100644 --- a/config/webpack.config.main.base.ts +++ b/config/webpack.config.main.base.ts @@ -11,7 +11,7 @@ const configuration: webpack.Configuration = { target: 'electron-main', - entry: [path.join(webpackPaths.srcMainPath, 'main.ts')], + entry: [path.join(webpackPaths.srcMainPath, 'index.ts')], output: { path: webpackPaths.buildPath, diff --git a/src/main/main.ts b/src/main/index.ts similarity index 100% rename from src/main/main.ts rename to src/main/index.ts