Skip to content

Commit 89e8994

Browse files
chore: generate
1 parent 5980b0a commit 89e8994

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

packages/opencode/src/config/plugin.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ export type Options = Schema.Schema.Type<typeof Options>
1111

1212
// Spec is the user-config value: either just a plugin identifier, or the identifier plus inline options.
1313
// It answers "what should we load?" but says nothing about where that value came from.
14-
export const Spec = Schema.Union([
15-
Schema.String,
16-
Schema.mutable(Schema.Tuple([Schema.String, Options])),
17-
]).pipe(withStatics((s) => ({ zod: zod(s) })))
14+
export const Spec = Schema.Union([Schema.String, Schema.mutable(Schema.Tuple([Schema.String, Options]))]).pipe(
15+
withStatics((s) => ({ zod: zod(s) })),
16+
)
1817
export type Spec = Schema.Schema.Type<typeof Spec>
1918

2019
export type Scope = "global" | "local"

0 commit comments

Comments
 (0)