From d4a4a168cd0ce29cd785eb822c49fdcd7aa175d6 Mon Sep 17 00:00:00 2001 From: lumozx <969671691@qq.com> Date: Mon, 16 Oct 2023 16:26:18 +0800 Subject: [PATCH] fix: registerySystemPlugin -> registerSystemPlugin --- .../{registerySystemPlugin.ts => registerSystemPlugin.ts} | 0 src/main/index.ts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/main/common/{registerySystemPlugin.ts => registerSystemPlugin.ts} (100%) diff --git a/src/main/common/registerySystemPlugin.ts b/src/main/common/registerSystemPlugin.ts similarity index 100% rename from src/main/common/registerySystemPlugin.ts rename to src/main/common/registerSystemPlugin.ts diff --git a/src/main/index.ts b/src/main/index.ts index 4e300c0..4784c93 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -21,7 +21,7 @@ import { import '../common/utils/localPlugin'; -import registerySystemPlugin from './common/registerySystemPlugin'; +import registerSystemPlugin from './common/registerSystemPlugin'; class App { public windowCreator: { init: () => void; getWindow: () => BrowserWindow }; @@ -36,7 +36,7 @@ class App { if (!gotTheLock) { app.quit(); } else { - this.systemPlugins = registerySystemPlugin(); + this.systemPlugins = registerSystemPlugin(); this.beforeReady(); this.onReady(); this.onRunning();