mirror of
https://github.com/aljazceru/react-native-pubky.git
synced 2025-12-17 14:44:26 +01:00
16 lines
256 B
JavaScript
16 lines
256 B
JavaScript
const path = require('path');
|
|
const pkg = require('../package.json');
|
|
|
|
module.exports = {
|
|
project: {
|
|
ios: {
|
|
automaticPodsInstallation: true,
|
|
},
|
|
},
|
|
dependencies: {
|
|
[pkg.name]: {
|
|
root: path.join(__dirname, '..'),
|
|
},
|
|
},
|
|
};
|