mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-24 07:29:30 +01:00
34 lines
594 B
JavaScript
34 lines
594 B
JavaScript
const isGithubRelease = false;
|
|
const config = {
|
|
commands: require("@callstack/repack/commands/rspack")
|
|
};
|
|
|
|
if (!config.dependencies) config.dependencies = {};
|
|
|
|
config.dependencies["react-native-vector-icons"] = {
|
|
platforms: {
|
|
ios: null
|
|
}
|
|
};
|
|
|
|
config.dependencies["react-native-screenguard"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
};
|
|
|
|
if (isGithubRelease) {
|
|
config.dependencies["react-native-iap"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
};
|
|
config.dependencies["react-native-in-app-review"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
};
|
|
}
|
|
|
|
module.exports = config;
|