mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
aba4ec0c09
Reviewed By: yungsters Differential Revision: D7962462 fbshipit-source-id: 0afe2092af8703895de91a6d1400315c3173aa6d
31 lines
456 B
JavaScript
31 lines
456 B
JavaScript
/** @format */
|
|
|
|
const android = require('./android');
|
|
const ios = require('./ios');
|
|
|
|
const flat = {
|
|
android: android.valid,
|
|
ios: ios.valid,
|
|
Podfile: 'empty',
|
|
};
|
|
|
|
const nested = {
|
|
android: {
|
|
app: android.valid,
|
|
},
|
|
ios: ios.valid,
|
|
};
|
|
|
|
const withExamples = {
|
|
Examples: flat,
|
|
ios: ios.valid,
|
|
android: android.valid,
|
|
};
|
|
|
|
const withPods = {
|
|
Podfile: 'content',
|
|
ios: ios.pod,
|
|
};
|
|
|
|
module.exports = {flat, nested, withExamples, withPods};
|