Skip to content

Commit e5d8ac0

Browse files
authored
Merge pull request #45 from CutterKnife/correct-style
Fix | macOS, iOS の表記を修正
2 parents 509862c + fe7e2e6 commit e5d8ac0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/gh-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const getReadableName = (name: string): string => {
4747
return 'Windows Portable';
4848
}
4949
if (name.includes('dmg')) {
50-
return 'MacOS';
50+
return 'macOS';
5151
}
5252

5353
return name;

lib/utils.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ export const getComponent = (node: React.ReactNode, returnIfProduction: boolean
2424
export const platformOptions = {
2525
"windows": "Windows",
2626
"linux": "Linux",
27-
"macos": "MacOS",
27+
"macos": "macOS",
2828
"android": "Android",
29-
"ios": "IOS",
29+
"ios": "iOS",
3030
} as Record<string, string>;
3131

3232
export enum Platform {
3333
Linux = 'Linux',
3434
Windows = 'Windows',
35-
MacOS = 'MacOS',
35+
MacOS = 'macOS',
3636
Android = 'Android',
37-
IOS = 'IOS',
37+
IOS = 'iOS',
3838
}
3939

4040
export const convertOptionToPlatform = (option: string): Platform => {

0 commit comments

Comments
 (0)