From b58ea7039cea5ee41c5f0055c16278eb4e062e28 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Thu, 18 Aug 2022 06:18:00 +0200 Subject: [PATCH] Add fallback to bcryptjs, make canvas optional --- src/plugins/PluginIndex.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/PluginIndex.ts b/src/plugins/PluginIndex.ts index 2688d0bf4..502161a16 100644 --- a/src/plugins/PluginIndex.ts +++ b/src/plugins/PluginIndex.ts @@ -1,5 +1,6 @@ +import { Plugin } from "util/plugin"; import * as example_plugin from "./example-plugin/TestPlugin"; export const PluginIndex: any = { - "example-plugin": new example_plugin.default() -}; + "example-plugin": new example_plugin.default(), +}; \ No newline at end of file