* feat: add ios and rn source * fix(ios): remove testing keys * fix(tracker): change default path
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
const path = require('path');
|
|
const pak = require('../package.json');
|
|
|
|
module.exports = {
|
|
dependencies: {
|
|
[pak.name]: {
|
|
root: path.join(__dirname, '..'),
|
|
},
|
|
},
|
|
};
|