Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"jest": "^30.4.2",
"jest-circus": "^30.4.2",
"lint-staged": "^17.0.8",
"prettier": "^3.6.2",
"prettier": "^3.9.1",
"ts-jest": "^29.4.11",
"typescript": "^5.3.3"
},
Expand Down
3 changes: 1 addition & 2 deletions src/distributions/corretto/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ export class CorrettoDistribution extends JavaBase {

private getAvailableVersionsForPlatform(
eligibleVersions:
| ICorrettoAllAvailableVersions['os']['arch']['imageType']
| undefined
ICorrettoAllAvailableVersions['os']['arch']['imageType'] | undefined
): ICorrettoAvailableVersions[] {
const availableVersions: ICorrettoAvailableVersions[] = [];

Expand Down
6 changes: 1 addition & 5 deletions src/distributions/liberica/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ export type Bitness = '32' | '64';
export type ArchType = 'arm' | 'ppc' | 'sparc' | 'x86';

export type OsVersions =
| 'linux'
| 'linux-musl'
| 'macos'
| 'solaris'
| 'windows';
'linux' | 'linux-musl' | 'macos' | 'solaris' | 'windows';

export interface ArchitectureOptions {
bitness: Bitness;
Expand Down
Loading