Skip to content

Commit 11d40d7

Browse files
committed
refactor: move kotlin to the top when selecting languages
1 parent 00f1986 commit 11d40d7

File tree

1 file changed

+8
-8
lines changed
  • packages/create-react-native-library/src

1 file changed

+8
-8
lines changed

packages/create-react-native-library/src/index.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ const LANGUAGE_CHOICES: {
125125
types: ProjectType[];
126126
}[] = [
127127
{
128-
title: 'Java & Objective-C',
129-
value: 'java-objc',
128+
title: 'Kotlin & Objective-C',
129+
value: 'kotlin-objc',
130130
types: [
131131
'module-legacy',
132132
'module-new',
@@ -137,8 +137,8 @@ const LANGUAGE_CHOICES: {
137137
],
138138
},
139139
{
140-
title: 'Kotlin & Objective-C',
141-
value: 'kotlin-objc',
140+
title: 'Java & Objective-C',
141+
value: 'java-objc',
142142
types: [
143143
'module-legacy',
144144
'module-new',
@@ -149,13 +149,13 @@ const LANGUAGE_CHOICES: {
149149
],
150150
},
151151
{
152-
title: 'Java & Swift',
153-
value: 'java-swift',
152+
title: 'Kotlin & Swift',
153+
value: 'kotlin-swift',
154154
types: ['module-legacy', 'view-legacy'],
155155
},
156156
{
157-
title: 'Kotlin & Swift',
158-
value: 'kotlin-swift',
157+
title: 'Java & Swift',
158+
value: 'java-swift',
159159
types: ['module-legacy', 'view-legacy'],
160160
},
161161
{

0 commit comments

Comments
 (0)