Skip to content

Commit

Permalink
temp commit
Browse files Browse the repository at this point in the history
  • Loading branch information
r4zendev committed Mar 6, 2024
1 parent 1b8b1f5 commit f892931
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/registry/builder/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,27 +73,32 @@ const codemodConfigSchema = S.union(
engine: S.literal("piranha"),
language: piranhaLanguageSchema,
arguments: optionalArgumentsSchema,
owner: S.optional(S.string),
}),
S.struct({
schemaVersion: S.literal("1.0.0"),
engine: S.literal("jscodeshift"),
arguments: optionalArgumentsSchema,
owner: S.optional(S.string),
}),
S.struct({
schemaVersion: S.literal("1.0.0"),
engine: S.literal("ts-morph"),
arguments: optionalArgumentsSchema,
owner: S.optional(S.string),
}),
S.struct({
schemaVersion: S.literal("1.0.0"),
engine: S.literal("filemod"),
arguments: optionalArgumentsSchema,
owner: S.optional(S.string),
}),
S.struct({
schemaVersion: S.literal("1.0.0"),
engine: S.literal("recipe"),
names: S.array(S.string),
arguments: optionalArgumentsSchema,
owner: S.optional(S.string),
}),
);

Expand Down

0 comments on commit f892931

Please sign in to comment.