mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
* build: convert all release scripts to typescript * fix test imports * build: fix version bumper export * refactor: use as const * spec: fix bad type spec
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
export const ELECTRON_ORG = 'electron';
|
|
export const ELECTRON_REPO = 'electron';
|
|
export const NIGHTLY_REPO = 'nightlies';
|
|
|
|
export type ElectronReleaseRepo = 'electron' | 'nightlies';
|
|
|
|
export type VersionBumpType = 'nightly' | 'alpha' | 'beta' | 'minor' | 'stable';
|