Skip to content

Commit

Permalink
fix: made image optional in config object
Browse files Browse the repository at this point in the history
  • Loading branch information
cbontems committed Jun 25, 2023
1 parent ff4685d commit 2cd7fb2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
},
"scripts": {
"commit": "git-cz",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const imageOptions = z
image: z.object({
path: z.string(),
width: z.array(z.number()).optional(),
}),
}).optional(),
logo: z
.object({
path: z.string(),
Expand Down

0 comments on commit 2cd7fb2

Please sign in to comment.