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