Skip to content

Commit cc26726

Browse files
committedOct 5, 2024
fix(untyped): use schema module default export if is the only export
1 parent f409edb commit cc26726

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎src/builders/untyped/index.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,19 @@ export async function typesBuild(ctx: BuildContext): Promise<void> {
3939
const untypedJiti = createJiti(ctx.options.rootDir, options.jiti);
4040

4141
const distDir = entry.outDir!;
42-
const srcConfig =
42+
43+
let rawSchema =
4344
((await untypedJiti.import(resolve(ctx.options.rootDir, entry.input), {
4445
try: true,
4546
})) as InputObject) || ({} as InputObject);
4647

48+
const rawSchemaKeys = Object.keys(rawSchema);
49+
if (rawSchemaKeys.length === 1 && rawSchemaKeys[0] === "default") {
50+
rawSchema = (rawSchema as any).default;
51+
}
52+
4753
const defaults = entry.defaults || {};
48-
const schema = await resolveSchema(srcConfig, defaults);
54+
const schema = await resolveSchema(rawSchema, defaults);
4955

5056
await ctx.hooks.callHook("untyped:entry:schema", ctx, entry, schema);
5157

0 commit comments

Comments
 (0)