Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Kit Langton
7a5a0711b5 refactor: unwrap PluginLoader namespace + self-reexport 2026-04-16 22:11:06 -04:00

View file

@ -11,7 +11,6 @@ import {
import { ConfigPlugin } from "@/config/plugin" import { ConfigPlugin } from "@/config/plugin"
import { InstallationVersion } from "@/installation/version" import { InstallationVersion } from "@/installation/version"
export namespace PluginLoader {
export type Plan = { export type Plan = {
spec: string spec: string
options: ConfigPlugin.Options | undefined options: ConfigPlugin.Options | undefined
@ -171,4 +170,5 @@ export namespace PluginLoader {
for (const item of out) if (item !== undefined) ready.push(item) for (const item of out) if (item !== undefined) ready.push(item)
return ready return ready
} }
}
export * as PluginLoader from "./loader"