Some checks failed
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / build-library (push) Has been cancelled
CI / build-android (push) Has been cancelled
CI / build-ios (push) Has been cancelled
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, '..'),
|
|
},
|
|
},
|
|
};
|