ignite-boilerplate-andross-typescript
Version:
Customized version of ignite Andross With TypeScript Support.
45 lines (41 loc) • 927 B
JavaScript
/**
* The questions to ask during the install process.
*/
const questions = [
{
name: 'login-screen',
message: 'Choose Login Screen ',
type: 'list',
choices: ['No Login Screen','Simple Login Screen', 'Sms Login Screen']
},
{
name: 'main-screen',
message: 'Choose Main Screen ',
type: 'list',
choices: ['Simple Screen','Bottom Tabbed Screen','Top Tabbed Screen', 'Navigation Drawer Screen','Social Media Screen']
},
]
/**
* The max preset.
*/
const max = {
'dev-screens': 'Yes',
'vector-icons': 'react-native-vector-icons',
i18n: 'react-native-i18n',
animatable: 'react-native-animatable',
'redux-persist': 'Yes'
}
/**
* The min preset.
*/
const min = {
'dev-screens': 'No',
'vector-icons': 'none',
i18n: 'none',
animatable: 'none',
'redux-persist': 'No'
}
module.exports = {
questions,
answers: { min, max }
}