Skip to content

Commit

Permalink
Allow strings for authors in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
lexisother committed Aug 5, 2024
1 parent 836b260 commit db5630c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class Validator {
}

private assertPeople(valuePath: JsonPath, value: Person[] | undefined): void {
let assertion = this.assertType(valuePath, value, [Type.array], true);
let assertion = this.assertType(valuePath, value, [Type.array, Type.string], true);
if (assertion.status !== 'ok') return;
value = value!;

Expand Down

0 comments on commit db5630c

Please sign in to comment.