Multiple --native-target-version in command line argument

This commit is contained in:
Antonino Porcino 2016-07-07 10:38:09 +02:00
parent a993ebffde
commit 5dcc94deb5
1 changed files with 3 additions and 2 deletions

View File

@ -113,7 +113,8 @@ $ rt <filename> [<filename> ...] [<args>]`,
option: 'native-target-version',
alias: 'rnv',
type: 'String',
default: reactNativeSupport.default,
description: `'React native version to generate code for (${Object.keys(reactNativeSupport).join(', ')})'`
enum: Object.keys(reactNativeSupport),
default: reactNativeSupport.default,
description: `React native version to generate code for (${Object.keys(reactNativeSupport).join(', ')})`
}]
});