-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generate script for release binary filenames when architecture cant b…
…e inferred
- Loading branch information
Adam McKee
committed
Aug 26, 2024
1 parent
98debfb
commit c19fde5
Showing
18 changed files
with
190 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type {Architecture} from '@eighty4/install-template' | ||
|
||
export const ARCHITECTURE_UPDATE_EVENT_TYPE = 'architecture' | ||
|
||
export type ArchitectureUpdateEvent = CustomEvent<ArchitectureUpdate> | ||
|
||
export interface ArchitectureUpdate { | ||
arch: Architecture | ||
filename: string | ||
} | ||
|
||
export function createArchitectureUpdate(arch: Architecture, filename: string): CustomEvent<ArchitectureUpdate> { | ||
return new CustomEvent<ArchitectureUpdate>(ARCHITECTURE_UPDATE_EVENT_TYPE, {detail: {arch, filename}}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.container { | ||
margin: 2.5rem; | ||
margin: 2.5rem 0; | ||
} | ||
|
||
.os { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.