core: bundle GitLab auth plugin directly instead of dynamic install

Remove dynamic installation of built-in plugins. GitLab auth is now imported

directly as an internal plugin, eliminating network requests during startup

and simplifying the plugin loading logic.

Removes the need for test mocks since plugins are no longer

dynamically installed at runtime.
This commit is contained in:
Dax Raad
2026-02-05 11:29:00 -05:00
parent e776077bac
commit 61ca69317a
7 changed files with 97 additions and 120 deletions
+1 -1
View File
@@ -274,7 +274,7 @@ export namespace Config {
...(proxied() ? ["--no-cache"] : []),
],
{ cwd: dir },
).catch(() => {})
)
}
async function isWritable(dir: string) {