mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
12 KiB
Plaintext
1 line
12 KiB
Plaintext
{"dependencies":[{"name":"./winter","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":84},"end":{"line":2,"column":18,"index":102}}],"key":"mkkKJkNfPl3SGB5Bx4OGQ/3JW8Y=","exportNames":["*"],"imports":1}},{"name":"./async-require","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":103},"end":{"line":3,"column":25,"index":128}}],"key":"PeNRWexqbbNYxkpckBcXNC2Zzv0=","exportNames":["*"],"imports":1}},{"name":"expo-asset","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":129},"end":{"line":4,"column":20,"index":149}}],"key":"ZXJFWHziJpBZf3W7vl00wXf6fd8=","exportNames":["*"],"imports":1}},{"name":"expo/virtual/rsc","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":150},"end":{"line":5,"column":26,"index":176}}],"key":"Njna7k+CMzQedLgoLi0KGtlTdvM=","exportNames":["*"],"imports":1}},{"name":"expo-constants","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":178},"end":{"line":7,"column":39,"index":217}}],"key":"pPv5KzfRT0rL6NCr7G9k0o4d1W8=","exportNames":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":218},"end":{"line":8,"column":76,"index":294}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"./environment/ExpoGo","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":296},"end":{"line":10,"column":57,"index":353}}],"key":"F+MwpkEnpJkgvAycBfX5pcdeFTU=","exportNames":["*"],"imports":1}},{"name":"./errors/AppEntryNotFound","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":354},"end":{"line":11,"column":61,"index":415}}],"key":"uxC/Eigd8br/RpahWlhds1Je7vE=","exportNames":["*"],"imports":1}},{"name":"./errors/ExpoErrorManager","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":416},"end":{"line":12,"column":63,"index":479}}],"key":"esKyY/+Md43XSEpLGnyGTCXAU2g=","exportNames":["*"],"imports":1}},{"name":"./async-require/messageSocket","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":20,"column":2,"index":595},"end":{"line":20,"column":42,"index":635}}],"key":"k8zmQB3/d0Ul89pS0lZcJyGvEHs=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n require(_dependencyMap[0], \"./winter\");\n require(_dependencyMap[1], \"./async-require\");\n require(_dependencyMap[2], \"expo-asset\");\n require(_dependencyMap[3], \"expo/virtual/rsc\");\n var _expoConstants = require(_dependencyMap[4], \"expo-constants\");\n var Constants = _interopDefault(_expoConstants);\n var _reactNative = require(_dependencyMap[5], \"react-native\");\n var _environmentExpoGo = require(_dependencyMap[6], \"./environment/ExpoGo\");\n var _errorsAppEntryNotFound = require(_dependencyMap[7], \"./errors/AppEntryNotFound\");\n var _errorsExpoErrorManager = require(_dependencyMap[8], \"./errors/ExpoErrorManager\");\n // load expo-asset immediately to set a custom `source` transformer in React Native\n\n // Only during development.\n if (__DEV__ &&\n // Disable for SSR\n typeof globalThis.expo !== 'undefined') {\n require(_dependencyMap[9], \"./async-require/messageSocket\");\n }\n if ((0, _environmentExpoGo.isRunningInExpoGo)()) {\n // set up some improvements to commonly logged error messages stemming from react-native\n var globalHandler = ErrorUtils.getGlobalHandler();\n ErrorUtils.setGlobalHandler((0, _errorsExpoErrorManager.createErrorHandler)(globalHandler));\n }\n\n // Warn if the New Architecture is not explicitly enabled in the app config and we are running in Expo Go.\n // This could be problematic because you will be developing your app with the New Architecture enabled and\n // but your builds will have the New Architecture disabled.\n if (__DEV__ && (0, _environmentExpoGo.isRunningInExpoGo)() && process.env.NODE_ENV === 'development') {\n ['android', 'ios'].forEach(function (platform) {\n var _Constants$expoConfig, _Constants$expoConfig2;\n var newArchPlatformConfig = (_Constants$expoConfig = Constants.default.expoConfig) == null || (_Constants$expoConfig = _Constants$expoConfig[platform]) == null ? void 0 : _Constants$expoConfig.newArchEnabled;\n var newArchRootConfig = (_Constants$expoConfig2 = Constants.default.expoConfig) == null ? void 0 : _Constants$expoConfig2.newArchEnabled;\n var isNewArchExplicitlyDisabled = newArchPlatformConfig === false || newArchPlatformConfig === undefined && newArchRootConfig === false;\n if (_reactNative.Platform.OS === platform && isNewArchExplicitlyDisabled) {\n // Wrap it in rAF to show the warning after the React Native DevTools message\n requestAnimationFrame(function () {\n console.warn(`🚨 React Native's New Architecture is always enabled in Expo Go, but it is explicitly disabled in your project's app config. This may lead to unexpected behavior when creating a production or development build. Remove \"newArchEnabled\": false from your app.json.\\nLearn more: https://docs.expo.dev/guides/new-architecture/`);\n });\n }\n });\n }\n\n // Disable the \"Open debugger to view warnings\" React Native DevTools warning in\n // Expo Go and expo-dev-client, because launching the debugger from there will not\n // get the correct JS target.\n var IS_RUNNING_IN_DEV_CLIENT = !!_reactNative.NativeModules.EXDevLauncher;\n if (__DEV__ && _reactNative.LogBox != null && _reactNative.LogBox.ignoreLogs && ((0, _environmentExpoGo.isRunningInExpoGo)() || IS_RUNNING_IN_DEV_CLIENT)) {\n _reactNative.LogBox.ignoreLogs([/Open debugger to view warnings/]);\n }\n if (process.env.NODE_ENV !== 'production') {\n // Register a default component and expect `registerRootComponent` to be called later and update it.\n _reactNative.AppRegistry.registerComponent('main', function () {\n return _errorsAppEntryNotFound.AppEntryNotFound;\n });\n }\n});","lineCount":64,"map":[[9,2,2,0,"require"],[9,9,2,0],[9,10,2,0,"_dependencyMap"],[9,24,2,0],[10,2,3,0,"require"],[10,9,3,0],[10,10,3,0,"_dependencyMap"],[10,24,3,0],[11,2,4,0,"require"],[11,9,4,0],[11,10,4,0,"_dependencyMap"],[11,24,4,0],[12,2,5,0,"require"],[12,9,5,0],[12,10,5,0,"_dependencyMap"],[12,24,5,0],[13,2,7,0],[13,6,7,0,"_expoConstants"],[13,20,7,0],[13,23,7,0,"require"],[13,30,7,0],[13,31,7,0,"_dependencyMap"],[13,45,7,0],[14,2,7,0],[14,6,7,0,"Constants"],[14,15,7,0],[14,18,7,0,"_interopDefault"],[14,33,7,0],[14,34,7,0,"_expoConstants"],[14,48,7,0],[15,2,8,0],[15,6,8,0,"_reactNative"],[15,18,8,0],[15,21,8,0,"require"],[15,28,8,0],[15,29,8,0,"_dependencyMap"],[15,43,8,0],[16,2,10,0],[16,6,10,0,"_environmentExpoGo"],[16,24,10,0],[16,27,10,0,"require"],[16,34,10,0],[16,35,10,0,"_dependencyMap"],[16,49,10,0],[17,2,11,0],[17,6,11,0,"_errorsAppEntryNotFound"],[17,29,11,0],[17,32,11,0,"require"],[17,39,11,0],[17,40,11,0,"_dependencyMap"],[17,54,11,0],[18,2,12,0],[18,6,12,0,"_errorsExpoErrorManager"],[18,29,12,0],[18,32,12,0,"require"],[18,39,12,0],[18,40,12,0,"_dependencyMap"],[18,54,12,0],[19,2,1,0],[21,2,14,0],[22,2,15,0],[22,6,16,2,"__DEV__"],[22,13,16,9],[23,2,17,2],[24,2,18,2],[24,9,18,9,"globalThis"],[24,19,18,19],[24,20,18,20,"expo"],[24,24,18,24],[24,29,18,29],[24,40,18,40],[24,42,19,2],[25,4,20,2,"require"],[25,11,20,9],[25,12,20,9,"_dependencyMap"],[25,26,20,9],[25,62,20,41],[25,63,20,42],[26,2,21,0],[27,2,23,0],[27,6,23,4],[27,10,23,4,"isRunningInExpoGo"],[27,28,23,21],[27,29,23,21,"isRunningInExpoGo"],[27,46,23,21],[27,48,23,22],[27,49,23,23],[27,51,23,25],[28,4,24,2],[29,4,25,2],[29,8,25,8,"globalHandler"],[29,21,25,21],[29,24,25,24,"ErrorUtils"],[29,34,25,34],[29,35,25,35,"getGlobalHandler"],[29,51,25,51],[29,52,25,52],[29,53,25,53],[30,4,26,2,"ErrorUtils"],[30,14,26,12],[30,15,26,13,"setGlobalHandler"],[30,31,26,29],[30,32,26,30],[30,36,26,30,"createErrorHandler"],[30,59,26,48],[30,60,26,48,"createErrorHandler"],[30,78,26,48],[30,80,26,49,"globalHandler"],[30,93,26,62],[30,94,26,63],[30,95,26,64],[31,2,27,0],[33,2,29,0],[34,2,30,0],[35,2,31,0],[36,2,32,0],[36,6,32,4,"__DEV__"],[36,13,32,11],[36,17,32,15],[36,21,32,15,"isRunningInExpoGo"],[36,39,32,32],[36,40,32,32,"isRunningInExpoGo"],[36,57,32,32],[36,59,32,33],[36,60,32,34],[36,64,32,38,"process"],[36,71,32,45],[36,72,32,46,"env"],[36,75,32,49],[36,76,32,50,"NODE_ENV"],[36,84,32,58],[36,89,32,63],[36,102,32,76],[36,104,32,78],[37,4,33,3],[37,5,33,4],[37,14,33,13],[37,16,33,15],[37,21,33,20],[37,22,33,21],[37,23,33,32,"forEach"],[37,30,33,39],[37,31,33,40],[37,41,33,41,"platform"],[37,49,33,49],[37,51,33,54],[38,6,33,54],[38,10,33,54,"_Constants$expoConfig"],[38,31,33,54],[38,33,33,54,"_Constants$expoConfig2"],[38,55,33,54],[39,6,34,4],[39,10,34,10,"newArchPlatformConfig"],[39,31,34,31],[39,35,34,31,"_Constants$expoConfig"],[39,56,34,31],[39,59,34,34,"Constants"],[39,68,34,43],[39,69,34,43,"default"],[39,76,34,43],[39,77,34,44,"expoConfig"],[39,87,34,54],[39,101,34,54,"_Constants$expoConfig"],[39,122,34,54],[39,125,34,34,"_Constants$expoConfig"],[39,146,34,34],[39,147,34,57,"platform"],[39,155,34,65],[39,156,34,66],[39,177,34,34,"_Constants$expoConfig"],[39,198,34,34],[39,199,34,68,"newArchEnabled"],[39,213,34,82],[40,6,35,4],[40,10,35,10,"newArchRootConfig"],[40,27,35,27],[40,31,35,27,"_Constants$expoConfig2"],[40,53,35,27],[40,56,35,30,"Constants"],[40,65,35,39],[40,66,35,39,"default"],[40,73,35,39],[40,74,35,40,"expoConfig"],[40,84,35,50],[40,105,35,30,"_Constants$expoConfig2"],[40,127,35,30],[40,128,35,52,"newArchEnabled"],[40,142,35,66],[41,6,37,4],[41,10,37,10,"isNewArchExplicitlyDisabled"],[41,37,37,37],[41,40,38,6,"newArchPlatformConfig"],[41,61,38,27],[41,66,38,32],[41,71,38,37],[41,75,39,7,"newArchPlatformConfig"],[41,96,39,28],[41,101,39,33,"undefined"],[41,110,39,42],[41,114,39,46,"newArchRootConfig"],[41,131,39,63],[41,136,39,68],[41,141,39,74],[42,6,41,4],[42,10,41,8,"Platform"],[42,22,41,16],[42,23,41,16,"Platform"],[42,31,41,16],[42,32,41,17,"OS"],[42,34,41,19],[42,39,41,24,"platform"],[42,47,41,32],[42,51,41,36,"isNewArchExplicitlyDisabled"],[42,78,41,63],[42,80,41,65],[43,8,42,6],[44,8,43,6,"requestAnimationFrame"],[44,29,43,27],[44,30,43,28],[44,42,43,34],[45,10,44,8,"console"],[45,17,44,15],[45,18,44,16,"warn"],[45,22,44,20],[45,23,45,10],[45,346,46,8],[45,347,46,9],[46,8,47,6],[46,9,47,7],[46,10,47,8],[47,6,48,4],[48,4,49,2],[48,5,49,3],[48,6,49,4],[49,2,50,0],[51,2,52,0],[52,2,53,0],[53,2,54,0],[54,2,55,0],[54,6,55,6,"IS_RUNNING_IN_DEV_CLIENT"],[54,30,55,30],[54,33,55,33],[54,34,55,34],[54,35,55,35,"NativeModules"],[54,47,55,48],[54,48,55,48,"NativeModules"],[54,61,55,48],[54,62,55,49,"EXDevLauncher"],[54,75,55,62],[55,2,56,0],[55,6,56,4,"__DEV__"],[55,13,56,11],[55,17,56,15,"LogBox"],[55,29,56,21],[55,30,56,21,"LogBox"],[55,36,56,21],[55,48,56,15,"LogBox"],[55,60,56,21],[55,61,56,21,"LogBox"],[55,67,56,21],[55,68,56,23,"ignoreLogs"],[55,78,56,33],[55,83,56,38],[55,87,56,38,"isRunningInExpoGo"],[55,105,56,55],[55,106,56,55,"isRunningInExpoGo"],[55,123,56,55],[55,125,56,56],[55,126,56,57],[55,130,56,61,"IS_RUNNING_IN_DEV_CLIENT"],[55,154,56,85],[55,155,56,86],[55,157,56,88],[56,4,57,2,"LogBox"],[56,16,57,8],[56,17,57,8,"LogBox"],[56,23,57,8],[56,24,57,9,"ignoreLogs"],[56,34,57,19],[56,35,57,20],[56,36,57,21],[56,68,57,53],[56,69,57,54],[56,70,57,55],[57,2,58,0],[58,2,60,0],[58,6,60,4,"process"],[58,13,60,11],[58,14,60,12,"env"],[58,17,60,15],[58,18,60,16,"NODE_ENV"],[58,26,60,24],[58,31,60,29],[58,43,60,41],[58,45,60,43],[59,4,61,2],[60,4,62,2,"AppRegistry"],[60,16,62,13],[60,17,62,13,"AppRegistry"],[60,28,62,13],[60,29,62,14,"registerComponent"],[60,46,62,31],[60,47,62,32],[60,53,62,38],[60,55,62,40],[61,6,62,40],[61,13,62,46,"AppEntryNotFound"],[61,36,62,62],[61,37,62,62,"AppEntryNotFound"],[61,53,62,62],[62,4,62,62],[62,6,62,63],[63,2,63,0],[64,0,63,1],[64,3]],"functionMap":{"names":["<global>","forEach$argument_0","requestAnimationFrame$argument_0","AppRegistry.registerComponent$argument_1"],"mappings":"AAA;wCCgC;4BCU;ODI;GDE;wCGa,sBH"},"hasCjsExports":false},"type":"js/module"}]} |