From b01083fb7132f3b3b35b98a6d43996b1713ca5ef Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Wed, 23 Aug 2023 09:20:52 -0600 Subject: [PATCH] fix: add getPluginsList --- src/config/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config/config.ts b/src/config/config.ts index 078069583..a92acbe32 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -544,6 +544,10 @@ export class Config implements IConfig { return url.toString() } + public getPluginsList(): IPlugin[] { + return this.plugins + } + protected dir(category: 'cache' | 'data' | 'config'): string { const base = process.env[`XDG_${category.toUpperCase()}_HOME`] || (this.windows && process.env.LOCALAPPDATA) ||