Skip to content

Commit

Permalink
chore: remove env variable for experimental features
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Jun 30, 2022
1 parent 1393060 commit 5d33fa6
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions packages/create-react-native-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,18 +240,14 @@ async function create(argv: yargs.Arguments<any>) {
name: 'type',
message: 'What type of library do you want to develop?',
choices: [
...(process.env.EXPERIMENTAL_TURBO_MODULES === '1'
? [
{
title: 'Turbo module (backward compatible)',
value: 'module-mixed',
},
{
title: 'Turbo module',
value: 'module-turbo',
},
]
: []),
{
title: 'Turbo module with backward compat (experimental)',
value: 'module-mixed',
},
{
title: 'Turbo module (experimental)',
value: 'module-turbo',
},
{
title: 'Native module',
value: 'module-legacy',
Expand Down

0 comments on commit 5d33fa6

Please sign in to comment.