fix: format code and ensure consistent styling across files

This commit is contained in:
mr. M 2025-01-08 00:19:40 +01:00
parent 2a9df52722
commit d14b44b2c8
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
43 changed files with 14294 additions and 11609 deletions

View file

@ -1,27 +1,27 @@
import releaseNotesStable from './release-notes/stable.json';
import releaseNotesStable from './release-notes/stable.json'
interface FixWithIssue {
description: string;
issue?: number;
description: string
issue?: number
}
type Fix = string | FixWithIssue;
type Fix = string | FixWithIssue
export type BreakingChange = string | { description: string; link: string };
export type BreakingChange = string | { description: string; link: string }
export interface ReleaseNote {
version: string;
date?: string; // optional for twilight
extra?: string;
image?: boolean;
fixes?: Fix[];
features?: string[];
breakingChanges?: BreakingChange[];
themeChanges?: string[];
inProgress?: boolean;
workflowId?: number;
isTwilight?: boolean;
version: string
date?: string // optional for twilight
extra?: string
image?: boolean
fixes?: Fix[]
features?: string[]
breakingChanges?: BreakingChange[]
themeChanges?: string[]
inProgress?: boolean
workflowId?: number
isTwilight?: boolean
}
export const releaseNotes: ReleaseNote[] = releaseNotesStable.reverse();
export {default as releaseNotesTwilight} from './release-notes/twilight.json';
export const releaseNotes: ReleaseNote[] = releaseNotesStable.reverse()
export { default as releaseNotesTwilight } from './release-notes/twilight.json'