Skip to content

Commit e860448

Browse files
authored
Mark KV metadata library filename optional (#169)
1 parent b39e129 commit e860448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/kvMetadata.schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ export type Libraries = z.infer<typeof librariesSchema>;
66

77
export const librarySchema = z.object({
88
name: z.string(),
9-
filename: z.string(),
10-
version: z.string(),
119
description: z.string(),
1210
keywords: z.array(z.string()),
11+
version: z.string(),
12+
filename: z.string().optional(),
1313
homepage: z.string().optional(),
1414
license: z.string().optional(),
1515
author: z.string().optional(),

0 commit comments

Comments
 (0)