chore:- upgrade-super-config

This commit is contained in:
riteshshukla04
2026-02-09 02:40:25 +05:30
parent 6ed93d9063
commit 335ef53ac8
6 changed files with 9 additions and 19 deletions

3
.env
View File

@@ -1,2 +1,3 @@
OTA_UPDATE_ENABLED=true
IS_MAESTRO_BUILD = false
IS_MAESTRO_BUILD = false
GLITCHTIP_DSN= ""

View File

@@ -1,6 +1,5 @@
{
"lockfileVersion": 1,
"configVersion": 0,
"workspaces": {
"": {
"name": "jellify",
@@ -48,7 +47,7 @@
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.21.0",
"react-native-sortables": "1.9.4",
"react-native-superconfig": "^0.6.0",
"react-native-superconfig": "^0.8.0",
"react-native-text-ticker": "^1.15.0",
"react-native-toast-message": "^2.3.3",
"react-native-track-player": "5.0.0-alpha0",
@@ -1930,7 +1929,7 @@
"react-native-sortables": ["react-native-sortables@1.9.4", "", { "optionalDependencies": { "react-native-haptic-feedback": ">=2.0.0" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-gesture-handler": ">=2.0.0", "react-native-reanimated": ">=3.0.0" } }, "sha512-a6hxT+gl14HA5Sm8UiLXJqF8KMEQVa+mUJd75OnzoVsmrxUDtjAatlMdV0kI9qTQDT/ZSFLPRmdUhOR762IA4g=="],
"react-native-superconfig": ["react-native-superconfig@0.6.0", "", { "peerDependencies": { "react": "*", "react-native": "*", "react-native-nitro-modules": "*" } }, "sha512-kW9SjpKmuB7F54JNzaWHX5Ncr7jM8852FcIcBvfIyR0ofACaGvqf59hLKg7i8DfSIi0f5DXOCXbvu88cr8PIVw=="],
"react-native-superconfig": ["react-native-superconfig@0.8.0", "", { "peerDependencies": { "react": "*", "react-native": "*", "react-native-nitro-modules": "*" } }, "sha512-BwNGXqGlxfLzVo6P4nDi0jNcvGoF95xQymJxlysSR5a6XaFVp61bGZRfxqG7AaCumyOBCZJoNz3kokf/r8QszA=="],
"react-native-tab-view": ["react-native-tab-view@4.2.2", "", { "dependencies": { "use-latest-callback": "^0.2.4" }, "peerDependencies": { "react": ">= 18.2.0", "react-native": "*", "react-native-pager-view": ">= 6.0.0" } }, "sha512-NXtrG6OchvbGjsvbySJGVocXxo4Y2vA17ph4rAaWtA2jh+AasD8OyikKBRg2SmllEfeQ+GEhcKe8kulHv8BhTg=="],

View File

@@ -139,7 +139,7 @@ PODS:
- SSZipArchive
- Yoga
- NitroOtaBundleManager (0.10.0)
- NitroSuperconfig (0.6.0):
- NitroSuperconfig (0.8.0):
- boost
- DoubleConversion
- fast_float
@@ -3650,14 +3650,14 @@ SPEC CHECKSUMS:
Gifu: 9f7e52357d41c0739709019eb80a71ad9aab1b6d
glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
google-cast-sdk: 32f65af50d164e3c475e79ad123db3cc26fbcd37
hermes-engine: 83ac7cadb2a3a158ae6d9e4192417c5232065e99
hermes-engine: 6878b8fefe82b91b24caae48ac97164746244d09
MMKVCore: f2dd4c9befea04277a55e84e7812f930537993df
NitroFetch: 1a268c80f654b3018397672d264f1e4d646076b1
NitroMmkv: 8ed7ef6f41b91785fc580c975f68d6d675214767
NitroModules: 11bba9d065af151eae51e38a6425e04c3b223ff3
NitroOta: 92d4eb528566b6babf5e4a30adbda44bfa803a9b
NitroOtaBundleManager: 8fad871db2daf6b9ee6f04a100c79605cfa81e8d
NitroSuperconfig: 54d86ee90bb78cbca09d119ea775a53ffbedb0fc
NitroSuperconfig: 9e46697751a3316711c6f2d37674b03200ba3499
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
RCTDeprecation: a41bbdd9af30bf2e5715796b313e44ec43eefff1

View File

@@ -80,7 +80,7 @@
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.21.0",
"react-native-sortables": "1.9.4",
"react-native-superconfig": "^0.6.0",
"react-native-superconfig": "^0.8.0",
"react-native-text-ticker": "^1.15.0",
"react-native-toast-message": "^2.3.3",
"react-native-track-player": "5.0.0-alpha0",

View File

@@ -2,7 +2,7 @@ import Config from 'react-native-superconfig'
const OTA_UPDATE_ENABLED = Config.OTA_UPDATE_ENABLED === 'true'
const IS_MAESTRO_BUILD = Config.IS_MAESTRO_BUILD === 'true'
const GLITCHTIP_DSN = Config.GLITCHTIP_DSN
const GLITCHTIP_DSN = Config.GLITCHTIP_DSN ?? ''
export { OTA_UPDATE_ENABLED, IS_MAESTRO_BUILD, GLITCHTIP_DSN }

View File

@@ -1,10 +0,0 @@
declare module 'react-native-superconfig' {
export interface NativeConfig {
OTA_UPDATE_ENABLED?: string
IS_MAESTRO_BUILD?: string
GLITCHTIP_DSN?: string
}
export const Config: NativeConfig
export default Config
}