2018-05-11 12:43:49 -07:00
|
|
|
/** @format */
|
|
|
|
|
2016-05-20 04:52:08 -07:00
|
|
|
const android = require('./android');
|
|
|
|
const ios = require('./ios');
|
|
|
|
|
|
|
|
const flat = {
|
|
|
|
android: android.valid,
|
|
|
|
ios: ios.valid,
|
2018-05-11 12:43:49 -07:00
|
|
|
Podfile: 'empty',
|
2016-05-20 04:52:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const nested = {
|
|
|
|
android: {
|
|
|
|
app: android.valid,
|
|
|
|
},
|
|
|
|
ios: ios.valid,
|
|
|
|
};
|
|
|
|
|
|
|
|
const withExamples = {
|
|
|
|
Examples: flat,
|
|
|
|
ios: ios.valid,
|
|
|
|
android: android.valid,
|
|
|
|
};
|
|
|
|
|
2017-10-17 21:19:53 -07:00
|
|
|
const withPods = {
|
|
|
|
Podfile: 'content',
|
2018-05-11 12:43:49 -07:00
|
|
|
ios: ios.pod,
|
2017-10-17 21:19:53 -07:00
|
|
|
};
|
|
|
|
|
2018-05-11 12:43:49 -07:00
|
|
|
module.exports = {flat, nested, withExamples, withPods};
|