Skip to content

Commit

Permalink
fix(maker-dmg): make 'name' optional in DMGContents interface (#3390)
Browse files Browse the repository at this point in the history
Aligns DMGContents with appdmg's definition where 'name' is optional.
  • Loading branch information
BitYoungjae authored Nov 2, 2023
1 parent 126867d commit 6990f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/maker/dmg/src/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface DMGContents {
y: number;
type: 'link' | 'file' | 'position';
path: string;
name: string;
name?: string;
}

export interface WindowPositionOptions {
Expand Down

0 comments on commit 6990f33

Please sign in to comment.