-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.ts
56 lines (41 loc) · 1.42 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// CORDIS DESKTOP BUILD CONFIG
// ---------------------------------------------------
// Here are all config used during building. You can
// freely change configs like mirrors and build paths,
// but do not commit/push them.
//#region Sources
// These are sources for downloading toolchains.
// Try using mirrors if you cannot download some of
// them.
export const sourceNode = 'https://nodejs.org/dist'
export const sourceYarn = 'https://repo.yarnpkg.com'
export const sourceGitHub = 'https://github.com'
//#endregion
//#region Toolchain
// These are used to prepare toolchains.
// Remember to test all tasks before upgrading
// versions.
export const versionNode = '20.12.2'
export const versionYarn = '4.0.1'
export const versionWebView2 = '1.0.1343.22'
export const versionAppimagetool = '13'
export const versionToolsVersioninfo = 'v1.4.0'
export const versionToolsGolangCILint = 'v1.52.2'
export const versionToolsGoText = 'v0.11.0'
export const versionToolsRcedit = 'v1.1.1'
export const versionToolsWix = '311'
//#endregion
//#region Defaults
// These are defaults for Cordis Desktop.
export const repoBoilerplate = 'koishijs/boilerplate'
export const versionBoilerplate = 'v1.13.6'
/**
* ID of the default instance.
*/
export const defaultInstance = 'default'
//#endregion
//#region Overrides
// Enable these config overrides to test edge case
// behaviors.
export const overrideKoiVersion = '' // '0.1.0'
//#endregion