Skip to content

Commit 5d33fa6

Browse files
committed
chore: remove env variable for experimental features
1 parent 1393060 commit 5d33fa6

File tree

1 file changed

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

1 file changed

+8
-12
lines changed

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

+8-12
Original file line numberDiff line numberDiff line change
@@ -240,18 +240,14 @@ async function create(argv: yargs.Arguments<any>) {
240240
name: 'type',
241241
message: 'What type of library do you want to develop?',
242242
choices: [
243-
...(process.env.EXPERIMENTAL_TURBO_MODULES === '1'
244-
? [
245-
{
246-
title: 'Turbo module (backward compatible)',
247-
value: 'module-mixed',
248-
},
249-
{
250-
title: 'Turbo module',
251-
value: 'module-turbo',
252-
},
253-
]
254-
: []),
243+
{
244+
title: 'Turbo module with backward compat (experimental)',
245+
value: 'module-mixed',
246+
},
247+
{
248+
title: 'Turbo module (experimental)',
249+
value: 'module-turbo',
250+
},
255251
{
256252
title: 'Native module',
257253
value: 'module-legacy',

0 commit comments

Comments
 (0)