mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-07-09 20:09:36 +02:00
28 lines
501 B
JavaScript
28 lines
501 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
|
|
}
|
|
};
|
|
|
|
if (isGithubRelease) {
|
|
config.dependencies["react-native-iap"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
};
|
|
config.dependencies["react-native-in-app-review"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
};
|
|
}
|
|
|
|
module.exports = config;
|