feat: release json with download urls (#1140)
This commit is contained in:
25
packages/releases/src/index.ts
Normal file
25
packages/releases/src/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export enum Platform {
|
||||
LinuxAmd64Snap,
|
||||
LinuxAmd64Deb,
|
||||
LinuxArm64AppImage,
|
||||
LinuxArm64Deb,
|
||||
LinuxI386AppImage,
|
||||
LinuxI386Deb,
|
||||
LinuxX86_64AppImage,
|
||||
MacArm64Dmg,
|
||||
MacArm64Zip,
|
||||
MacX64Dmg,
|
||||
MacX64Zip,
|
||||
WinIa32Exe,
|
||||
WinX64Exe,
|
||||
WinExe,
|
||||
}
|
||||
|
||||
export type Package =
|
||||
| '@standardnotes/mobile'
|
||||
| '@standardnotes/desktop'
|
||||
| '@standardnotes/components-meta'
|
||||
| '@standardnotes/web'
|
||||
|
||||
export type Versions = Record<Package, string>
|
||||
export type Downloads = Record<Platform, string>
|
||||
Reference in New Issue
Block a user