mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 01:10:02 +02:00
fix: format code and ensure consistent styling across files
This commit is contained in:
parent
2a9df52722
commit
d14b44b2c8
43 changed files with 14294 additions and 11609 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue