Closed atanaskanchev closed 1 year ago
โโ react-native@0.70.5
Shouldn't matter much but that's one notch back from current, 0.70.6 I think?
The Podfile definition of use_frameworks looks pretty complicated. Why not just use_frameworks! :linkage => :static
? dynamic may have problems, and it may be this problem.
No one else has reported problems though, and I do not have problems with current versions of react-native or react-native-firebase in combination (https://github.com/mikehardy/rnfbdemo/blob/main/make-demo.sh is my test rig, it works, and 0.71.0 will work when it comes out as well, after working with the react-native releases crew - https://github.com/mikehardy/rnfbdemo/blob/rn71/make-demo.sh)
I see a mention in the linked issue that this is fixed upstream already (and should be released in react-native 0.71 according to the test results there, if I understand correctly). This is out of our control so I'm going to close this as there is no action to take
So the conclusion is that anyone that wants to use react-native-firebase with expo can either:
I'm not sure, I don't personally use Expo and I'm not in control of their release schedule. I'm under the impression that they track upstream react-native releases very very quickly at this point though I am unable to find news on an Expo 48 beta release / full release cycle, so maybe this will be a while.
It does appear you need to modify the Podfile in order to patch up some compiler include path though. Of course with Expo hiding/managing all that stuff you can't just do it, so yes I think that implies a config plugin.
Best example I see of that as a config plugin is the dangerous code mod style I saw here as they "slice" in something after finding a hopefully-safe file index inside the Podfile as it's generated: https://www.sitepen.com/blog/doing-more-with-expo-using-custom-native-code
Thank you so much @mikehardy.
From the threads I find, assuming I have control over my native files I should be able to modify my podfile before the pod install
step, so that this code is applied? I will give it a go now to write a config plugin that does as suggested
My config plugin:
/* eslint-disable @typescript-eslint/no-var-requires */
const { withDangerousMod, withPlugins } = require('@expo/config-plugins');
const { readFileSync, writeFileSync } = require('fs');
const { resolve } = require('path');
function withPatchPodfile(config) {
return withDangerousMod(config, [
'ios',
(cfg) => {
const { platformProjectRoot } = cfg.modRequest;
const podfile = resolve(platformProjectRoot, 'Podfile');
const contents = readFileSync(podfile, 'utf-8');
const lines = contents.split('\n');
const index = lines.findIndex((line) =>
/\s+__apply_Xcode_12_5_M1_post_install_workaround\(installer\)/.test(line)
);
writeFileSync(
podfile,
[
...lines.slice(0, index + 1),
`
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] ||= '$(inherited) '
config.build_settings["HEADER_SEARCH_PATHS"] << '"$(PODS_TARGET_SRCROOT)" '
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_ROOT)/Headers/Private/React-bridging/react/bridging" '
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_CONFIGURATION_BUILD_DIR)/React-bridging/react_bridging.framework/Headers" '
end
end
`,
...lines.slice(index + 1),
].join('\n')
);
return cfg;
},
]);
}
module.exports = (config) => {
return withPlugins(config, [withPatchPodfile]);
};
My resulting podfile (ios/podfile):
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
require 'json'
podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
platform :ios, podfile_properties['ios.deploymentTarget'] || '13.0'
install! 'cocoapods',
:deterministic_uuids => false
target 'X' do
use_expo_modules!
config = use_native_modules!
use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks']
# Flags change depending on the env values.
flags = get_default_flags()
use_react_native!(
:path => config[:reactNativePath],
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes',
:fabric_enabled => flags[:fabric_enabled],
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/..",
#
# Uncomment to opt-in to using Flipper
# Note that if you have use_frameworks! enabled, Flipper will not work
# :flipper_configuration => !ENV['CI'] ? FlipperConfiguration.enabled : FlipperConfiguration.disabled,
)
post_install do |installer|
react_native_post_install(
installer,
# Set `mac_catalyst_enabled` to `true` in order to apply patches
# necessary for Mac Catalyst builds
:mac_catalyst_enabled => false
)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] ||= '$(inherited) '
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_TARGET_SRCROOT)" '
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_ROOT)/Headers/Private/React-bridging/react/bridging" '
config.build_settings['HEADER_SEARCH_PATHS'] << '"$(PODS_CONFIGURATION_BUILD_DIR)/React-bridging/react_bridging.framework/Headers" '
end
end
# This is necessary for Xcode 14, because it signs resource bundles by default
# when building for devices.
installer.target_installation_results.pod_target_installation_results
.each do |pod_name, target_installation_result|
target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
resource_bundle_target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
post_integrate do |installer|
begin
expo_patch_react_imports!(installer)
rescue => e
Pod::UI.warn e
end
end
end
However it still fails on the exact same node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleUtils.h
:
x/node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleUtils.h:16:10 'react/bridging/CallbackWrapper.h' file not found
Anyone figured out a solution? Spot any obvious issues with my approach?
This problem does not happen with any of the ~60 other packages we rely on (rough because not all of them impact native) so I really wish this problem and workaround was documented in react-native-firebase
Our documents are all open source as well and GitHub as an easy web-based PR workflow for text PRs As mentioned I do not use Expo so I am not qualified to document any part of it really, Expo support here is community driven - thus any Expo wishes need to be PRs from Expo-using folks. We merge them quickly
We are facing the same exact problem and all the solutions I found around don't work.
Issue
Describe your issue here
iOS build of an expo app fails after adding RNFB.
It seems this is related to a bug in
react-native
itself as described here but it happens only after adding the rnfb setup to the appAnyone facing the same issue?
Project Files
Javascript
Click To Expand
#### `package.json`: ``` yarn list --depth=0 ๎ฒ โ โ 1m 35s โ 10:48:48 โโโ yarn list v1.22.19 โโ @adobe/css-tools@4.0.1 โโ @ampproject/remapping@2.2.0 โโ @babel/code-frame@7.18.6 โโ @babel/compat-data@7.20.10 โโ @babel/core@7.20.7 โโ @babel/generator@7.20.7 โโ @babel/helper-annotate-as-pure@7.18.6 โโ @babel/helper-builder-binary-assignment-operator-visitor@7.18.9 โโ @babel/helper-compilation-targets@7.20.7 โโ @babel/helper-create-class-features-plugin@7.20.7 โโ @babel/helper-create-regexp-features-plugin@7.20.5 โโ @babel/helper-define-polyfill-provider@0.3.3 โโ @babel/helper-environment-visitor@7.18.9 โโ @babel/helper-explode-assignable-expression@7.18.6 โโ @babel/helper-function-name@7.19.0 โโ @babel/helper-hoist-variables@7.18.6 โโ @babel/helper-member-expression-to-functions@7.20.7 โโ @babel/helper-module-imports@7.18.6 โโ @babel/helper-module-transforms@7.20.11 โโ @babel/helper-optimise-call-expression@7.18.6 โโ @babel/helper-plugin-utils@7.20.2 โโ @babel/helper-remap-async-to-generator@7.18.9 โโ @babel/helper-replace-supers@7.20.7 โโ @babel/helper-simple-access@7.20.2 โโ @babel/helper-skip-transparent-expression-wrappers@7.20.0 โโ @babel/helper-split-export-declaration@7.18.6 โโ @babel/helper-string-parser@7.19.4 โโ @babel/helper-validator-identifier@7.19.1 โโ @babel/helper-validator-option@7.18.6 โโ @babel/helper-wrap-function@7.20.5 โโ @babel/helpers@7.20.7 โโ @babel/highlight@7.18.6 โโ @babel/parser@7.20.7 โโ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6 โโ @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7 โโ @babel/plugin-proposal-async-generator-functions@7.20.7 โโ @babel/plugin-proposal-class-properties@7.18.6 โโ @babel/plugin-proposal-class-static-block@7.20.7 โโ @babel/plugin-proposal-decorators@7.20.7 โโ @babel/plugin-proposal-dynamic-import@7.18.6 โโ @babel/plugin-proposal-export-default-from@7.18.10 โโ @babel/plugin-proposal-export-namespace-from@7.18.9 โโ @babel/plugin-proposal-json-strings@7.18.6 โโ @babel/plugin-proposal-logical-assignment-operators@7.20.7 โโ @babel/plugin-proposal-nullish-coalescing-operator@7.18.6 โโ @babel/plugin-proposal-numeric-separator@7.18.6 โโ @babel/plugin-proposal-object-rest-spread@7.20.7 โโ @babel/plugin-proposal-optional-catch-binding@7.18.6 โโ @babel/plugin-proposal-optional-chaining@7.20.7 โโ @babel/plugin-proposal-private-methods@7.18.6 โโ @babel/plugin-proposal-private-property-in-object@7.20.5 โโ @babel/plugin-proposal-unicode-property-regex@7.18.6 โโ @babel/plugin-syntax-async-generators@7.8.4 โโ @babel/plugin-syntax-bigint@7.8.3 โโ @babel/plugin-syntax-class-properties@7.12.13 โโ @babel/plugin-syntax-class-static-block@7.14.5 โโ @babel/plugin-syntax-decorators@7.19.0 โโ @babel/plugin-syntax-dynamic-import@7.8.3 โโ @babel/plugin-syntax-export-default-from@7.18.6 โโ @babel/plugin-syntax-export-namespace-from@7.8.3 โโ @babel/plugin-syntax-flow@7.18.6 โโ @babel/plugin-syntax-import-assertions@7.20.0 โโ @babel/plugin-syntax-import-meta@7.10.4 โโ @babel/plugin-syntax-json-strings@7.8.3 โโ @babel/plugin-syntax-jsx@7.18.6 โโ @babel/plugin-syntax-logical-assignment-operators@7.10.4 โโ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3 โโ @babel/plugin-syntax-numeric-separator@7.10.4 โโ @babel/plugin-syntax-object-rest-spread@7.8.3 โโ @babel/plugin-syntax-optional-catch-binding@7.8.3 โโ @babel/plugin-syntax-optional-chaining@7.8.3 โโ @babel/plugin-syntax-private-property-in-object@7.14.5 โโ @babel/plugin-syntax-top-level-await@7.14.5 โโ @babel/plugin-syntax-typescript@7.20.0 โโ @babel/plugin-transform-arrow-functions@7.20.7 โโ @babel/plugin-transform-async-to-generator@7.20.7 โโ @babel/plugin-transform-block-scoped-functions@7.18.6 โโ @babel/plugin-transform-block-scoping@7.20.11 โโ @babel/plugin-transform-classes@7.20.7 โโ @babel/plugin-transform-computed-properties@7.20.7 โโ @babel/plugin-transform-destructuring@7.20.7 โโ @babel/plugin-transform-dotall-regex@7.18.6 โโ @babel/plugin-transform-duplicate-keys@7.18.9 โโ @babel/plugin-transform-exponentiation-operator@7.18.6 โโ @babel/plugin-transform-flow-strip-types@7.19.0 โโ @babel/plugin-transform-for-of@7.18.8 โโ @babel/plugin-transform-function-name@7.18.9 โโ @babel/plugin-transform-literals@7.18.9 โโ @babel/plugin-transform-member-expression-literals@7.18.6 โโ @babel/plugin-transform-modules-amd@7.20.11 โโ @babel/plugin-transform-modules-commonjs@7.20.11 โโ @babel/plugin-transform-modules-systemjs@7.20.11 โโ @babel/plugin-transform-modules-umd@7.18.6 โโ @babel/plugin-transform-named-capturing-groups-regex@7.20.5 โโ @babel/plugin-transform-new-target@7.18.6 โโ @babel/plugin-transform-object-super@7.18.6 โโ @babel/plugin-transform-parameters@7.20.7 โโ @babel/plugin-transform-property-literals@7.18.6 โโ @babel/plugin-transform-react-constant-elements@7.20.2 โโ @babel/plugin-transform-react-display-name@7.18.6 โโ @babel/plugin-transform-react-jsx-development@7.18.6 โโ @babel/plugin-transform-react-jsx-self@7.18.6 โโ @babel/plugin-transform-react-jsx-source@7.19.6 โโ @babel/plugin-transform-react-jsx@7.20.7 โโ @babel/plugin-transform-react-pure-annotations@7.18.6 โโ @babel/plugin-transform-regenerator@7.20.5 โโ @babel/plugin-transform-reserved-words@7.18.6 โโ @babel/plugin-transform-runtime@7.19.6 โโ @babel/plugin-transform-shorthand-properties@7.18.6 โโ @babel/plugin-transform-spread@7.20.7 โโ @babel/plugin-transform-sticky-regex@7.18.6 โโ @babel/plugin-transform-template-literals@7.18.9 โโ @babel/plugin-transform-typeof-symbol@7.18.9 โโ @babel/plugin-transform-typescript@7.20.7 โโ @babel/plugin-transform-unicode-escapes@7.18.10 โโ @babel/plugin-transform-unicode-regex@7.18.6 โโ @babel/preset-env@7.20.2 โโ @babel/preset-flow@7.18.6 โโ @babel/preset-modules@0.1.5 โโ @babel/preset-react@7.18.6 โโ @babel/preset-typescript@7.18.6 โโ @babel/register@7.18.9 โโ @babel/runtime-corejs3@7.20.7 โโ @babel/runtime@7.20.7 โโ @babel/template@7.20.7 โโ @babel/traverse@7.20.10 โโ @babel/types@7.20.7 โโ @bcoe/v8-coverage@0.2.3 โโ @colors/colors@1.5.0 โโ @cspotcode/source-map-support@0.8.1 โโ @eslint/eslintrc@1.4.0 โโ @expo/apple-utils@0.0.0-alpha.31 โโ @expo/bunyan@4.0.0 โโ @expo/cli@0.4.10 โโ @expo/code-signing-certificates@0.0.3 โโ @expo/config-plugins@5.0.4 โโ @expo/config-types@46.0.2 โโ @expo/config@7.0.3 โโ @expo/configure-splash-screen@0.6.0 โโ @expo/dev-server@0.1.115 โโ @expo/devcert@1.1.0 โโ @expo/eas-build-job@0.2.97 โโ @expo/eas-json@2.8.0 โโ @expo/image-utils@0.3.22 โโ @expo/json-file@8.2.36 โโ @expo/metro-config@0.5.1 โโ @expo/multipart-body-parser@1.1.0 โโ @expo/osascript@2.0.33 โโ @expo/package-manager@0.0.56 โโ @expo/pkcs12@0.0.8 โโ @expo/plist@0.0.18 โโ @expo/plugin-help@5.1.16 โโ @expo/plugin-warn-if-update-available@2.4.0 โโ @expo/prebuild-config@5.0.7 โโ @expo/results@1.0.0 โโ @expo/rudder-sdk-node@1.1.1 โโ @expo/schemer@1.4.4 โโ @expo/sdk-runtime-versions@1.0.0 โโ @expo/spawn-async@1.5.0 โโ @expo/timeago.js@1.0.0 โโ @expo/vector-icons@13.0.0 โโ @expo/webpack-config@0.17.3 โโ @expo/xcpretty@4.2.2 โโ @gar/promisify@1.1.3 โโ @graphql-typed-document-node/core@3.1.1 โโ @hapi/hoek@9.3.0 โโ @hapi/topo@5.1.0 โโ @humanwhocodes/config-array@0.9.5 โโ @humanwhocodes/object-schema@1.2.1 โโ @istanbuljs/load-nyc-config@1.1.0 โโ @istanbuljs/schema@0.1.3 โโ @jest/console@28.1.3 โโ @jest/core@28.1.3 โโ @jest/create-cache-key-function@29.3.1 โโ @jest/environment@28.1.3 โโ @jest/expect-utils@28.1.3 โโ @jest/expect@28.1.3 โโ @jest/fake-timers@28.1.3 โโ @jest/globals@28.1.3 โโ @jest/reporters@28.1.1 โโ @jest/schemas@28.1.3 โโ @jest/source-map@28.1.2 โโ @jest/test-result@28.1.3 โโ @jest/test-sequencer@28.1.3 โโ @jest/transform@28.1.3 โโ @jest/types@28.1.3 โโ @jridgewell/gen-mapping@0.3.2 โโ @jridgewell/resolve-uri@3.1.0 โโ @jridgewell/set-array@1.1.2 โโ @jridgewell/source-map@0.3.2 โโ @jridgewell/sourcemap-codec@1.4.14 โโ @jridgewell/trace-mapping@0.3.17 โโ @leichtgewicht/ip-codec@2.0.4 โโ @nodelib/fs.scandir@2.1.5 โโ @nodelib/fs.stat@2.0.5 โโ @nodelib/fs.walk@1.2.8 โโ @npmcli/fs@1.1.1 โโ @npmcli/move-file@1.1.2 โโ @nrwl/cli@15.4.1 โโ @nrwl/cypress@15.4.1 โโ @nrwl/detox@15.4.1 โโ @nrwl/devkit@15.4.1 โโ @nrwl/eslint-plugin-nx@15.4.1 โโ @nrwl/expo@15.4.1 โโ @nrwl/jest@15.4.1 โโ @nrwl/js@15.4.1 โโ @nrwl/linter@15.4.1 โโ @nrwl/react@15.4.1 โโ @nrwl/rollup@15.4.1 โโ @nrwl/tao@15.4.1 โโ @nrwl/vite@15.4.1 โโ @nrwl/web@15.4.1 โโ @nrwl/webpack@15.4.1 โโ @nrwl/workspace@15.4.1 โโ @oclif/core@1.22.0 โโ @oclif/linewrap@1.0.0 โโ @oclif/plugin-autocomplete@1.3.4 โโ @oclif/screen@3.0.3 โโ @parcel/watcher@2.0.4 โโ @phenomnomnominal/tsquery@4.1.1 โโ @react-native-community/cli-clean@9.2.1 โโ @react-native-community/cli-config@9.2.1 โโ @react-native-community/cli-debugger-ui@9.0.0 โโ @react-native-community/cli-doctor@9.3.0 โโ @react-native-community/cli-hermes@9.3.1 โโ @react-native-community/cli-platform-android@9.2.1 โโ @react-native-community/cli-platform-ios@9.2.1 โโ @react-native-community/cli-plugin-metro@9.2.1 โโ @react-native-community/cli-server-api@9.2.1 โโ @react-native-community/cli-tools@9.2.1 โโ @react-native-community/cli-types@9.1.0 โโ @react-native-community/cli@9.2.1 โโ @react-native-firebase/app@16.5.0 โโ @react-native-firebase/crashlytics@16.5.0 โโ @react-native-firebase/perf@16.5.0 โโ @react-native/assets@1.0.0 โโ @react-native/normalize-color@2.1.0 โโ @react-native/polyfills@2.0.0 โโ @rollup/plugin-babel@5.3.1 โโ @rollup/plugin-commonjs@20.0.0 โโ @rollup/plugin-image@2.1.1 โโ @rollup/plugin-json@4.1.0 โโ @rollup/plugin-node-resolve@13.3.0 โโ @rollup/pluginutils@3.1.0 โโ @segment/ajv-human-errors@2.1.2 โโ @segment/loosely-validate-event@2.0.0 โโ @sideway/address@4.1.4 โโ @sideway/formula@3.0.1 โโ @sideway/pinpoint@2.0.0 โโ @sinclair/typebox@0.24.51 โโ @sindresorhus/is@0.14.0 โโ @sinonjs/commons@1.8.6 โโ @sinonjs/fake-timers@9.1.2 โโ @svgr/babel-plugin-add-jsx-attribute@6.5.1 โโ @svgr/babel-plugin-remove-jsx-attribute@6.5.0 โโ @svgr/babel-plugin-remove-jsx-empty-expression@6.5.0 โโ @svgr/babel-plugin-replace-jsx-attribute-value@6.5.1 โโ @svgr/babel-plugin-svg-dynamic-title@6.5.1 โโ @svgr/babel-plugin-svg-em-dimensions@6.5.1 โโ @svgr/babel-plugin-transform-react-native-svg@6.5.1 โโ @svgr/babel-plugin-transform-svg-component@6.5.1 โโ @svgr/babel-preset@6.5.1 โโ @svgr/core@6.5.1 โโ @svgr/hast-util-to-babel-ast@6.5.1 โโ @svgr/plugin-jsx@6.5.1 โโ @svgr/plugin-svgo@6.5.1 โโ @svgr/webpack@6.5.1 โโ @swc/helpers@0.4.14 โโ @szmarczak/http-timer@1.1.2 โโ @testing-library/jest-dom@5.16.5 โโ @testing-library/jest-native@5.3.0 โโ @testing-library/react-native@11.5.0 โโ @tootallnate/once@2.0.0 โโ @trysound/sax@0.2.0 โโ @tsconfig/node10@1.0.9 โโ @tsconfig/node12@1.0.11 โโ @tsconfig/node14@1.0.3 โโ @tsconfig/node16@1.0.3 โโ @types/babel__core@7.1.20 โโ @types/babel__generator@7.6.4 โโ @types/babel__template@7.4.1 โโ @types/babel__traverse@7.18.3 โโ @types/body-parser@1.19.2 โโ @types/bonjour@3.5.10 โโ @types/cacheable-request@6.0.3 โโ @types/connect-history-api-fallback@1.3.5 โโ @types/connect@3.4.35 โโ @types/eslint-scope@3.7.4 โโ @types/eslint@8.4.10 โโ @types/estree@1.0.0 โโ @types/express-serve-static-core@4.17.31 โโ @types/express@4.17.15 โโ @types/fs-extra@8.1.2 โโ @types/glob@7.2.0 โโ @types/graceful-fs@4.1.5 โโ @types/html-minifier-terser@5.1.2 โโ @types/http-cache-semantics@4.0.1 โโ @types/http-proxy@1.17.9 โโ @types/istanbul-lib-coverage@2.0.4 โโ @types/istanbul-lib-report@3.0.0 โโ @types/istanbul-reports@3.0.1 โโ @types/jest@28.1.1 โโ @types/jsdom@16.2.15 โโ @types/json-schema@7.0.11 โโ @types/json5@0.0.29 โโ @types/keyv@3.1.4 โโ @types/mime@3.0.1 โโ @types/minimatch@5.1.2 โโ @types/node@16.11.7 โโ @types/parse-json@4.0.0 โโ @types/parse5@6.0.3 โโ @types/prettier@2.7.2 โโ @types/prop-types@15.7.5 โโ @types/q@1.5.5 โโ @types/qs@6.9.7 โโ @types/range-parser@1.2.4 โโ @types/react-native@0.70.7 โโ @types/react@18.0.25 โโ @types/resolve@1.17.1 โโ @types/responselike@1.0.0 โโ @types/retry@0.12.2 โโ @types/scheduler@0.16.2 โโ @types/semver@7.3.13 โโ @types/serve-index@1.9.1 โโ @types/serve-static@1.15.0 โโ @types/sockjs@0.3.33 โโ @types/source-list-map@0.1.2 โโ @types/stack-utils@2.0.1 โโ @types/tapable@1.0.8 โโ @types/testing-library__jest-dom@5.14.5 โโ @types/tough-cookie@4.0.2 โโ @types/uglify-js@3.17.1 โโ @types/webpack-sources@3.2.0 โโ @types/webpack@4.41.33 โโ @types/ws@8.5.3 โโ @types/yargs-parser@21.0.0 โโ @types/yargs@17.0.17 โโ @typescript-eslint/eslint-plugin@5.47.0 โโ @typescript-eslint/parser@5.47.0 โโ @typescript-eslint/scope-manager@5.47.0 โโ @typescript-eslint/type-utils@5.47.0 โโ @typescript-eslint/types@5.47.0 โโ @typescript-eslint/typescript-estree@5.47.0 โโ @typescript-eslint/utils@5.47.0 โโ @typescript-eslint/visitor-keys@5.47.0 โโ @urql/core@3.1.1 โโ @urql/exchange-retry@0.3.0 โโ @webassemblyjs/ast@1.11.1 โโ @webassemblyjs/floating-point-hex-parser@1.11.1 โโ @webassemblyjs/helper-api-error@1.11.1 โโ @webassemblyjs/helper-buffer@1.11.1 โโ @webassemblyjs/helper-code-frame@1.9.0 โโ @webassemblyjs/helper-fsm@1.9.0 โโ @webassemblyjs/helper-module-context@1.9.0 โโ @webassemblyjs/helper-numbers@1.11.1 โโ @webassemblyjs/helper-wasm-bytecode@1.11.1 โโ @webassemblyjs/helper-wasm-section@1.9.0 โโ @webassemblyjs/ieee754@1.11.1 โโ @webassemblyjs/leb128@1.11.1 โโ @webassemblyjs/utf8@1.11.1 โโ @webassemblyjs/wasm-edit@1.9.0 โโ @webassemblyjs/wasm-gen@1.11.1 โโ @webassemblyjs/wasm-opt@1.9.0 โโ @webassemblyjs/wasm-parser@1.11.1 โโ @webassemblyjs/wast-parser@1.9.0 โโ @webassemblyjs/wast-printer@1.9.0 โโ @xmldom/xmldom@0.7.9 โโ @xtuc/ieee754@1.2.0 โโ @xtuc/long@4.2.2 โโ @yarn-tool/resolve-package@1.0.47 โโ @yarnpkg/lockfile@1.1.0 โโ @yarnpkg/parsers@3.0.0-rc.34 โโ @zkochan/js-yaml@0.0.6 โโ abab@2.0.6 โโ abort-controller@3.0.0 โโ absolute-path@0.0.0 โโ accepts@1.3.8 โโ acorn-globals@6.0.0 โโ acorn-import-assertions@1.8.0 โโ acorn-jsx@5.3.2 โโ acorn-walk@8.2.0 โโ acorn@8.8.1 โโ address@1.1.2 โโ agent-base@6.0.2 โโ aggregate-error@3.1.0 โโ ajv-errors@1.0.1 โโ ajv-formats@2.1.1 โโ ajv-keywords@3.5.2 โโ ajv@6.12.6 โโ alphanum-sort@1.0.2 โโ anser@1.4.10 โโ ansi-align@3.0.1 โโ ansi-colors@3.2.4 โโ ansi-escapes@4.3.2 โโ ansi-fragments@0.2.1 โโ ansi-html-community@0.0.8 โโ ansi-html@0.0.7 โโ ansi-regex@5.0.1 โโ ansi-styles@4.3.0 โโ ansicolors@0.3.2 โโ any-promise@1.3.0 โโ anymatch@3.1.3 โโ appdirsjs@1.2.7 โโ application-config-path@0.1.1 โโ aproba@1.2.0 โโ arg@4.1.0 โโ argparse@2.0.1 โโ aria-query@4.2.2 โโ arr-diff@4.0.0 โโ arr-flatten@1.1.0 โโ arr-union@3.1.0 โโ array-flatten@1.1.1 โโ array-includes@3.1.6 โโ array-union@2.1.0 โโ array-uniq@1.0.3 โโ array-unique@0.3.2 โโ array.prototype.flat@1.3.1 โโ array.prototype.flatmap@1.3.1 โโ array.prototype.reduce@1.0.5 โโ array.prototype.tosorted@1.1.1 โโ arrify@2.0.1 โโ asap@2.0.6 โโ asn1.js@5.4.1 โโ asn1@0.2.6 โโ assert@1.5.0 โโ assign-symbols@1.0.0 โโ ast-types-flow@0.0.7 โโ ast-types@0.14.2 โโ astral-regex@1.0.0 โโ async-each@1.0.3 โโ async-limiter@1.0.1 โโ async@3.2.4 โโ asynckit@0.4.0 โโ at-least-node@1.0.0 โโ atob@2.1.2 โโ autoprefixer@10.4.13 โโ available-typed-arrays@1.0.5 โโ axe-core@4.6.1 โโ axios@1.2.1 โโ axobject-query@2.2.0 โโ babel-core@7.0.0-bridge.0 โโ babel-jest@28.1.1 โโ babel-loader@8.3.0 โโ babel-plugin-const-enum@1.2.0 โโ babel-plugin-istanbul@6.1.1 โโ babel-plugin-jest-hoist@28.1.3 โโ babel-plugin-macros@2.8.0 โโ babel-plugin-module-resolver@4.1.0 โโ babel-plugin-polyfill-corejs2@0.3.3 โโ babel-plugin-polyfill-corejs3@0.6.0 โโ babel-plugin-polyfill-regenerator@0.4.1 โโ babel-plugin-react-native-web@0.18.10 โโ babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0 โโ babel-plugin-transform-async-to-promises@0.8.18 โโ babel-plugin-transform-typescript-metadata@0.3.2 โโ babel-preset-current-node-syntax@1.0.1 โโ babel-preset-expo@9.2.2 โโ babel-preset-fbjs@3.4.0 โโ babel-preset-jest@28.1.3 โโ balanced-match@1.0.2 โโ base@0.11.2 โโ base64-js@1.5.1 โโ basic-auth@2.0.1 โโ batch@0.6.1 โโ better-opn@3.0.2 โโ big-integer@1.6.51 โโ big.js@5.2.2 โโ binary-extensions@2.2.0 โโ bindings@1.5.0 โโ bl@4.1.0 โโ bluebird@3.7.2 โโ blueimp-md5@2.19.0 โโ bn.js@4.12.0 โโ body-parser@1.19.0 โโ bonjour-service@1.0.14 โโ bonjour@3.5.0 โโ boolbase@1.0.0 โโ boxen@5.1.2 โโ bplist-creator@0.1.0 โโ bplist-parser@0.3.2 โโ brace-expansion@1.1.11 โโ braces@2.3.2 โโ brorand@1.1.0 โโ browser-process-hrtime@1.0.0 โโ browserify-aes@1.2.0 โโ browserify-cipher@1.0.1 โโ browserify-des@1.0.2 โโ browserify-rsa@4.1.0 โโ browserify-sign@4.2.1 โโ browserify-zlib@0.2.0 โโ browserslist@4.21.4 โโ bs-logger@0.2.6 โโ bser@2.1.1 โโ buffer-alloc-unsafe@1.1.0 โโ buffer-alloc@1.2.0 โโ buffer-fill@1.0.0 โโ buffer-from@1.1.2 โโ buffer-indexof@1.1.1 โโ buffer-xor@1.0.3 โโ buffer@4.9.2 โโ builtin-modules@3.3.0 โโ builtin-status-codes@3.0.0 โโ builtins@1.0.3 โโ bunyan-debug-stream@3.1.0 โโ bunyan@1.8.15 โโ bytes@3.0.0 โโ cacache@15.3.0 โโ cache-base@1.0.1 โโ cacheable-lookup@5.0.4 โโ cacheable-request@6.1.0 โโ caf@15.0.1 โโ call-bind@1.0.2 โโ caller-callsite@2.0.0 โโ caller-path@2.0.0 โโ callsite@1.0.0 โโ callsites@3.1.0 โโ camel-case@4.1.2 โโ camelcase@6.3.0 โโ caniuse-api@3.0.0 โโ caniuse-lite@1.0.30001441 โโ cardinal@2.1.1 โโ chalk@4.1.2 โโ char-regex@1.0.2 โโ charenc@0.0.2 โโ child-process-promise@2.2.1 โโ chokidar@3.5.3 โโ chownr@2.0.0 โโ chrome-trace-event@1.0.3 โโ ci-info@3.7.0 โโ cipher-base@1.0.4 โโ cjs-module-lexer@1.2.2 โโ class-utils@0.3.6 โโ clean-css@4.2.4 โโ clean-stack@3.0.1 โโ clean-webpack-plugin@3.0.0 โโ cli-boxes@2.2.1 โโ cli-cursor@3.1.0 โโ cli-progress@3.11.2 โโ cli-spinners@2.7.0 โโ cli-table3@0.6.3 โโ cliui@7.0.4 โโ clone-deep@4.0.1 โโ clone-response@1.0.3 โโ clone@2.1.2 โโ co@4.6.0 โโ collect-v8-coverage@1.0.1 โโ collection-visit@1.0.0 โโ color-convert@1.9.3 โโ color-name@1.1.4 โโ color-string@1.9.1 โโ color@3.2.1 โโ colord@2.9.3 โโ colorette@1.4.0 โโ combined-stream@1.0.8 โโ command-exists@1.2.9 โโ commander@7.2.0 โโ commondir@1.0.1 โโ compare-versions@3.6.0 โโ component-emitter@1.3.0 โโ component-type@1.2.1 โโ compressible@2.0.18 โโ compression@1.7.4 โโ concat-map@0.0.1 โโ concat-stream@1.6.2 โโ concat-with-sourcemaps@1.1.0 โโ confusing-browser-globals@1.0.11 โโ connect-history-api-fallback@1.6.0 โโ connect@3.7.0 โโ console-browserify@1.2.0 โโ constants-browserify@1.0.0 โโ content-disposition@0.5.4 โโ content-type@1.0.4 โโ convert-source-map@1.9.0 โโ cookie-signature@1.0.6 โโ cookie@0.5.0 โโ copy-concurrently@1.0.5 โโ copy-descriptor@0.1.1 โโ copy-webpack-plugin@10.2.4 โโ core-js-compat@3.26.1 โโ core-js-pure@3.26.1 โโ core-util-is@1.0.3 โโ corser@2.0.1 โโ cosmiconfig@7.1.0 โโ create-ecdh@4.0.4 โโ create-hash@1.2.0 โโ create-hmac@1.1.7 โโ create-react-class@15.7.0 โโ create-require@1.1.1 โโ cross-fetch@3.1.5 โโ cross-spawn@6.0.5 โโ crypt@0.0.2 โโ crypto-browserify@3.12.0 โโ crypto-random-string@1.0.0 โโ css-color-names@0.0.4 โโ css-declaration-sorter@6.3.1 โโ css-in-js-utils@3.1.0 โโ css-loader@6.7.3 โโ css-minimizer-webpack-plugin@3.4.1 โโ css-select-base-adapter@0.1.1 โโ css-select@4.3.0 โโ css-tree@1.1.3 โโ css-what@6.1.0 โโ css.escape@1.5.1 โโ css@3.0.0 โโ cssesc@3.0.0 โโ cssnano-preset-default@5.2.13 โโ cssnano-util-get-arguments@4.0.0 โโ cssnano-util-get-match@4.0.0 โโ cssnano-util-raw-cache@4.0.1 โโ cssnano-util-same-parent@4.0.1 โโ cssnano-utils@3.1.0 โโ cssnano@5.1.14 โโ csso@4.2.0 โโ cssstyle@2.3.0 โโ csstype@3.1.1 โโ cyclist@1.0.1 โโ dag-map@1.0.2 โโ damerau-levenshtein@1.0.8 โโ data-urls@3.0.2 โโ dateformat@3.0.3 โโ dayjs@1.11.7 โโ debug@4.3.4 โโ decache@4.4.0 โโ decamelize@1.2.0 โโ decimal.js@10.4.3 โโ decode-uri-component@0.2.2 โโ decompress-response@3.3.0 โโ dedent@0.7.0 โโ deep-equal@1.1.1 โโ deep-extend@0.6.0 โโ deep-is@0.1.4 โโ deepmerge@4.2.2 โโ default-gateway@4.2.0 โโ defaults@1.0.4 โโ defer-to-connect@1.1.3 โโ define-lazy-prop@2.0.0 โโ define-properties@1.1.4 โโ define-property@0.2.5 โโ del@4.1.1 โโ delayed-stream@1.0.0 โโ denodeify@1.2.1 โโ depd@1.1.2 โโ des.js@1.0.1 โโ destroy@1.2.0 โโ detect-newline@3.1.0 โโ detect-node@2.1.0 โโ detect-port-alt@1.1.6 โโ detox@20.0.3 โโ dicer@0.3.1 โโ diff-sequences@28.1.1 โโ diff@4.0.2 โโ diffie-hellman@5.0.3 โโ dir-glob@3.0.1 โโ dns-equal@1.0.0 โโ dns-packet@1.3.4 โโ dns-txt@2.0.2 โโ doctrine@2.1.0 โโ dom-accessibility-api@0.5.14 โโ dom-converter@0.2.0 โโ dom-serializer@1.4.1 โโ domain-browser@1.2.0 โโ domelementtype@2.3.0 โโ domexception@4.0.0 โโ domhandler@4.3.1 โโ domino@2.1.6 โโ domutils@2.8.0 โโ dot-case@3.0.4 โโ dot-prop@5.3.0 โโ dotenv@10.0.0 โโ dtrace-provider@0.8.8 โโ duplexer@0.1.2 โโ duplexer2@0.1.4 โโ duplexer3@0.1.5 โโ duplexify@3.7.1 โโ eas-cli@2.8.0 โโ easy-stack@1.0.1 โโ ee-first@1.1.1 โโ ejs@3.1.8 โโ electron-to-chromium@1.4.284 โโ elliptic@6.5.4 โโ emittery@0.10.2 โโ emoji-regex@8.0.0 โโ emojis-list@3.0.0 โโ encodeurl@1.0.2 โโ end-of-stream@1.4.4 โโ enhanced-resolve@5.12.0 โโ enquirer@2.3.6 โโ entities@2.2.0 โโ env-editor@0.4.2 โโ env-paths@2.2.0 โโ env-string@1.0.1 โโ envinfo@7.8.1 โโ eol@0.9.1 โโ err-code@2.0.3 โโ errno@0.1.8 โโ error-ex@1.3.2 โโ error-stack-parser@2.1.4 โโ errorhandler@1.5.1 โโ es-abstract@1.20.5 โโ es-array-method-boxes-properly@1.0.0 โโ es-get-iterator@1.1.2 โโ es-module-lexer@0.9.3 โโ es-shim-unscopables@1.0.0 โโ es-to-primitive@1.2.1 โโ escalade@3.1.1 โโ escape-html@1.0.3 โโ escape-string-regexp@1.0.5 โโ escodegen@2.0.0 โโ eslint-config-prettier@8.1.0 โโ eslint-import-resolver-node@0.3.6 โโ eslint-module-utils@2.7.4 โโ eslint-plugin-import@2.26.0 โโ eslint-plugin-jsx-a11y@6.6.1 โโ eslint-plugin-react-hooks@4.6.0 โโ eslint-plugin-react@7.31.11 โโ eslint-scope@5.1.1 โโ eslint-utils@3.0.0 โโ eslint-visitor-keys@3.3.0 โโ eslint@8.15.0 โโ espree@9.4.1 โโ esprima@4.0.1 โโ esquery@1.4.0 โโ esrecurse@4.3.0 โโ estraverse@5.3.0 โโ estree-walker@2.0.2 โโ esutils@2.0.3 โโ etag@1.8.1 โโ event-pubsub@4.3.0 โโ event-target-shim@5.0.1 โโ eventemitter3@4.0.7 โโ events@3.3.0 โโ eventsource@1.1.2 โโ evp_bytestokey@1.0.3 โโ exec-async@2.2.0 โโ execa@1.0.0 โโ exit@0.1.2 โโ expand-brackets@2.1.4 โโ expect@28.1.3 โโ expo-application@5.0.1 โโ expo-asset@8.6.3 โโ expo-build-properties@0.4.1 โโ expo-cli@6.0.8 โโ expo-constants@14.0.2 โโ expo-dev-client@2.0.1 โโ expo-dev-launcher@2.0.2 โโ expo-dev-menu-interface@1.0.0 โโ expo-dev-menu@2.0.2 โโ expo-error-recovery@4.0.1 โโ expo-file-system@15.1.1 โโ expo-font@11.0.1 โโ expo-json-utils@0.4.0 โโ expo-keep-awake@11.0.1 โโ expo-manifests@0.4.0 โโ expo-modules-autolinking@1.0.0 โโ expo-modules-core@1.0.3 โโ expo-pwa@0.0.124 โโ expo-splash-screen@0.17.5 โโ expo-status-bar@1.4.2 โโ expo-updates-interface@0.8.1 โโ expo@47.0.8 โโ express@4.18.2 โโ extend-shallow@2.0.1 โโ extglob@2.0.4 โโ fast-deep-equal@3.1.3 โโ fast-glob@3.2.12 โโ fast-json-stable-stringify@2.1.0 โโ fast-levenshtein@2.0.6 โโ fast-loops@1.1.3 โโ fastq@1.14.0 โโ faye-websocket@0.11.4 โโ fb-watchman@2.0.2 โโ fbemitter@3.0.0 โโ fbjs-css-vars@1.0.2 โโ fbjs@3.0.4 โโ fetch-retry@4.1.1 โโ figgy-pudding@3.5.2 โโ figures@3.2.0 โโ file-entry-cache@6.0.1 โโ file-loader@6.2.0 โโ file-uri-to-path@1.0.0 โโ filelist@1.0.4 โโ filesize@6.1.0 โโ fill-range@4.0.0 โโ finalhandler@1.2.0 โโ find-babel-config@1.2.0 โโ find-cache-dir@3.3.2 โโ find-up@5.0.0 โโ find-yarn-workspace-root@2.0.0 โโ flat-cache@3.0.4 โโ flat@5.0.2 โโ flatted@3.2.7 โโ flow-parser@0.121.0 โโ flush-write-stream@1.1.1 โโ follow-redirects@1.15.2 โโ fontfaceobserver@2.3.0 โโ for-each@0.3.3 โโ for-in@1.0.2 โโ for-own@1.0.0 โโ fork-ts-checker-webpack-plugin@7.2.13 โโ form-data@4.0.0 โโ forwarded@0.2.0 โโ fraction.js@4.2.0 โโ fragment-cache@0.2.1 โโ freeport-async@2.0.0 โโ fresh@0.5.2 โโ from2@2.3.0 โโ fs-constants@1.0.0 โโ fs-extra@10.1.0 โโ fs-minipass@2.1.0 โโ fs-monkey@1.0.3 โโ fs-write-stream-atomic@1.0.10 โโ fs.realpath@1.0.0 โโ fsevents@2.3.2 โโ function-bind@1.1.1 โโ function.prototype.name@1.1.5 โโ functional-red-black-tree@1.0.1 โโ functions-have-names@1.2.3 โโ funpermaproxy@1.1.0 โโ generic-names@4.0.0 โโ gensync@1.0.0-beta.2 โโ get-caller-file@2.0.5 โโ get-intrinsic@1.1.3 โโ get-package-type@0.1.0 โโ get-port@3.2.0 โโ get-stream@4.1.0 โโ get-symbol-description@1.0.0 โโ get-value@2.0.6 โโ getenv@1.0.0 โโ glob-parent@5.1.2 โโ glob-to-regexp@0.4.1 โโ glob@7.2.3 โโ global-modules@2.0.0 โโ global-prefix@3.0.0 โโ globals@11.12.0 โโ globby@11.1.0 โโ golden-fleece@1.0.9 โโ gopd@1.0.1 โโ got@9.6.0 โโ graceful-fs@4.2.10 โโ gradle-to-js@2.0.1 โโ graphql-tag@2.12.6 โโ graphql@15.8.0 โโ gzip-size@5.1.1 โโ handle-thing@2.0.1 โโ harmony-reflect@1.6.2 โโ has-bigints@1.0.2 โโ has-flag@4.0.0 โโ has-property-descriptors@1.0.0 โโ has-symbols@1.0.3 โโ has-tostringtag@1.0.0 โโ has-value@1.0.0 โโ has@1.0.3 โโ hasbin@1.2.3 โโ hash-base@3.1.0 โโ hash.js@1.1.7 โโ hashids@1.1.4 โโ he@1.2.0 โโ hermes-estree@0.8.0 โโ hermes-parser@0.8.0 โโ hermes-profile-transformer@0.0.6 โโ hex-color-regex@1.1.0 โโ hmac-drbg@1.0.1 โโ hosted-git-info@3.0.8 โโ hpack.js@2.1.6 โโ hsl-regex@1.0.0 โโ hsla-regex@1.0.0 โโ html-encoding-sniffer@3.0.0 โโ html-entities@1.4.0 โโ html-escaper@2.0.2 โโ html-loader@1.1.0 โโ html-minifier-terser@5.1.1 โโ html-webpack-plugin@4.3.0 โโ htmlparser2@4.1.0 โโ http-cache-semantics@4.1.0 โโ http-call@5.3.0 โโ http-deceiver@1.2.7 โโ http-errors@1.6.3 โโ http-parser-js@0.5.8 โโ http-proxy-agent@5.0.0 โโ http-proxy-middleware@0.19.1 โโ http-proxy@1.18.1 โโ http-server@14.1.1 โโ http2-wrapper@1.0.3 โโ https-browserify@1.0.0 โโ https-proxy-agent@5.0.1 โโ human-signals@2.1.0 โโ hyperlinker@1.0.0 โโ hyphenate-style-name@1.0.4 โโ iconv-lite@0.4.24 โโ icss-replace-symbols@1.1.0 โโ icss-utils@4.1.1 โโ identity-obj-proxy@3.0.0 โโ ieee754@1.2.1 โโ iferr@0.1.5 โโ ignore@5.2.4 โโ image-size@1.0.2 โโ immer@8.0.1 โโ immutable@4.2.1 โโ import-cwd@3.0.0 โโ import-fresh@3.3.0 โโ import-from@3.0.0 โโ import-local@3.1.0 โโ imurmurhash@0.1.4 โโ indent-string@4.0.0 โโ indexes-of@1.0.1 โโ infer-owner@1.0.4 โโ inflight@1.0.6 โโ inherits@2.0.4 โโ ini@1.3.8 โโ inline-style-prefixer@6.0.4 โโ internal-ip@4.3.0 โโ internal-slot@1.0.4 โโ invariant@2.2.4 โโ ip-regex@2.1.0 โโ ip@1.1.8 โโ ipaddr.js@1.9.1 โโ is-absolute-url@3.0.3 โโ is-accessor-descriptor@1.0.0 โโ is-arguments@1.1.1 โโ is-arrayish@0.2.1 โโ is-bigint@1.0.4 โโ is-binary-path@2.1.0 โโ is-boolean-object@1.1.2 โโ is-buffer@1.1.6 โโ is-builtin-module@3.2.0 โโ is-callable@1.2.7 โโ is-color-stop@1.1.0 โโ is-core-module@2.11.0 โโ is-data-descriptor@1.0.0 โโ is-date-object@1.0.5 โโ is-descriptor@1.0.2 โโ is-directory@0.3.1 โโ is-docker@2.2.1 โโ is-extendable@0.1.1 โโ is-extglob@2.1.1 โโ is-fullwidth-code-point@2.0.0 โโ is-generator-fn@2.1.0 โโ is-glob@4.0.3 โโ is-interactive@1.0.0 โโ is-invalid-path@0.1.0 โโ is-map@2.0.2 โโ is-module@1.0.0 โโ is-negative-zero@2.0.2 โโ is-number-object@1.0.7 โโ is-number@3.0.0 โโ is-obj@2.0.0 โโ is-path-cwd@2.2.0 โโ is-path-in-cwd@2.1.0 โโ is-path-inside@2.1.0 โโ is-plain-obj@2.1.0 โโ is-plain-object@2.0.4 โโ is-port-reachable@2.0.1 โโ is-potential-custom-element-name@1.0.1 โโ is-reachable@4.0.0 โโ is-reference@1.2.1 โโ is-regex@1.1.4 โโ is-resolvable@1.1.0 โโ is-retry-allowed@1.2.0 โโ is-root@2.1.0 โโ is-set@2.0.2 โโ is-shared-array-buffer@1.0.2 โโ is-stream@2.0.1 โโ is-string@1.0.7 โโ is-symbol@1.0.4 โโ is-typed-array@1.1.10 โโ is-unicode-supported@0.1.0 โโ is-valid-path@0.1.1 โโ is-weakmap@2.0.1 โโ is-weakref@1.0.2 โโ is-weakset@2.0.2 โโ is-windows@1.0.2 โโ is-wsl@2.2.0 โโ isarray@1.0.0 โโ isexe@2.0.0 โโ isobject@3.0.1 โโ istanbul-lib-coverage@3.2.0 โโ istanbul-lib-instrument@5.2.1 โโ istanbul-lib-report@3.0.0 โโ istanbul-lib-source-maps@4.0.1 โโ istanbul-reports@3.1.5 โโ jake@10.8.5 โโ jest-changed-files@28.1.3 โโ jest-circus@28.1.1 โโ jest-cli@28.1.3 โโ jest-config@28.1.3 โโ jest-diff@28.1.3 โโ jest-docblock@28.1.1 โโ jest-each@28.1.3 โโ jest-environment-jsdom@28.1.1 โโ jest-environment-node@28.1.3 โโ jest-get-type@28.0.2 โโ jest-haste-map@28.1.3 โโ jest-leak-detector@28.1.3 โโ jest-matcher-utils@28.1.3 โโ jest-message-util@28.1.3 โโ jest-mock@28.1.3 โโ jest-pnp-resolver@1.2.3 โโ jest-regex-util@28.0.2 โโ jest-resolve-dependencies@28.1.3 โโ jest-resolve@28.1.3 โโ jest-runner@28.1.3 โโ jest-runtime@28.1.3 โโ jest-serializer@27.5.1 โโ jest-snapshot@28.1.3 โโ jest-util@28.1.3 โโ jest-validate@28.1.3 โโ jest-watcher@28.1.3 โโ jest-worker@27.5.1 โโ jest@28.1.1 โโ jimp-compact@0.16.1 โโ jks-js@1.1.0 โโ joi@17.7.0 โโ join-component@1.1.0 โโ js-message@1.0.7 โโ js-queue@2.0.2 โโ js-tokens@4.0.0 โโ js-yaml@3.14.1 โโ jsc-android@250230.2.1 โโ jscodeshift@0.13.1 โโ jsdom@19.0.0 โโ jsesc@2.5.2 โโ json-buffer@3.0.0 โโ json-cycle@1.3.0 โโ json-parse-better-errors@1.0.2 โโ json-parse-even-better-errors@2.3.1 โโ json-schema-deref-sync@0.13.0 โโ json-schema-traverse@1.0.0 โโ json-stable-stringify-without-jsonify@1.0.1 โโ json3@3.3.3 โโ json5@2.2.2 โโ jsonc-parser@3.2.0 โโ jsonfile@4.0.0 โโ jsx-ast-utils@3.3.3 โโ keychain@1.3.0 โโ keyv@3.1.0 โโ killable@1.0.1 โโ kind-of@6.0.3 โโ klaw@1.3.1 โโ kleur@3.0.3 โโ klona@2.0.5 โโ language-subtag-registry@0.3.22 โโ language-tags@1.0.7 โโ last-call-webpack-plugin@3.0.0 โโ latest-version@5.1.0 โโ less-loader@11.1.0 โโ less@3.12.2 โโ leven@3.1.0 โโ levn@0.4.1 โโ license-webpack-plugin@4.0.2 โโ lilconfig@2.0.6 โโ lines-and-columns@1.2.4 โโ loader-runner@2.4.0 โโ loader-utils@2.0.4 โโ locate-path@6.0.0 โโ lodash.camelcase@4.3.0 โโ lodash.debounce@4.0.8 โโ lodash.memoize@4.1.2 โโ lodash.merge@4.6.2 โโ lodash.throttle@4.1.1 โโ lodash.uniq@4.5.0 โโ lodash@4.17.21 โโ log-symbols@4.1.0 โโ logkitty@0.7.1 โโ loglevel@1.8.1 โโ loose-envify@1.4.0 โโ lower-case@2.0.2 โโ lowercase-keys@2.0.0 โโ lru-cache@6.0.0 โโ magic-string@0.25.9 โโ make-dir@2.1.0 โโ make-error@1.3.6 โโ makeerror@1.0.12 โโ map-cache@0.2.2 โโ map-visit@1.0.0 โโ md5-file@3.2.3 โโ md5.js@1.3.5 โโ md5@2.3.0 โโ md5hex@1.0.0 โโ mdn-data@2.0.14 โโ media-typer@0.3.0 โโ memfs@3.4.12 โโ memoize-one@5.2.1 โโ memory-cache@0.2.0 โโ memory-fs@0.4.1 โโ merge-descriptors@1.0.1 โโ merge-stream@2.0.0 โโ merge2@1.4.1 โโ methods@1.1.2 โโ metro-babel-transformer@0.72.3 โโ metro-cache-key@0.72.3 โโ metro-cache@0.72.3 โโ metro-config@0.72.3 โโ metro-core@0.72.3 โโ metro-file-map@0.72.3 โโ metro-hermes-compiler@0.72.3 โโ metro-inspector-proxy@0.72.3 โโ metro-minify-uglify@0.72.3 โโ metro-react-native-babel-preset@0.72.3 โโ metro-react-native-babel-transformer@0.72.3 โโ metro-resolver@0.73.3 โโ metro-runtime@0.72.3 โโ metro-source-map@0.72.3 โโ metro-symbolicate@0.72.3 โโ metro-transform-plugins@0.72.3 โโ metro-transform-worker@0.72.3 โโ metro@0.72.3 โโ microevent.ts@0.1.1 โโ micromatch@4.0.5 โโ miller-rabin@4.0.1 โโ mime-db@1.52.0 โโ mime-types@2.1.35 โโ mime@2.6.0 โโ mimic-fn@2.1.0 โโ mimic-response@1.0.1 โโ min-indent@1.0.1 โโ mini-css-extract-plugin@2.4.7 โโ mini-svg-data-uri@1.4.4 โโ minimalistic-assert@1.0.1 โโ minimalistic-crypto-utils@1.0.1 โโ minimatch@3.1.2 โโ minimist@1.2.7 โโ minipass-collect@1.0.2 โโ minipass-flush@1.0.5 โโ minipass-pipeline@1.2.4 โโ minipass@3.3.6 โโ minizlib@2.1.2 โโ mississippi@3.0.0 โโ mixin-deep@1.3.2 โโ mixin-object@2.0.1 โโ mkdirp-classic@0.5.3 โโ mkdirp@0.5.6 โโ moment@2.29.4 โโ move-concurrently@1.0.1 โโ ms@2.0.0 โโ multi-sort-stream@1.0.4 โโ multicast-dns-service-types@1.1.0 โโ multicast-dns@6.2.3 โโ multipipe@4.0.0 โโ mute-stream@0.0.8 โโ mv@2.1.1 โโ mz@2.7.0 โโ nan@2.17.0 โโ nanoid@3.3.4 โโ nanomatch@1.2.13 โโ native-request@1.1.0 โโ natural-compare-lite@1.4.0 โโ natural-compare@1.4.0 โโ natural-orderby@2.0.3 โโ ncp@2.0.0 โโ needle@2.9.1 โโ negotiator@0.6.3 โโ neo-async@2.6.2 โโ nested-error-stacks@2.0.1 โโ nice-try@1.0.5 โโ no-case@3.0.4 โโ nocache@3.0.4 โโ node-abort-controller@3.0.1 โโ node-addon-api@3.2.1 โโ node-dir@0.1.17 โโ node-fetch@2.6.7 โโ node-forge@1.3.1 โโ node-gyp-build@4.5.0 โโ node-html-parser@1.4.9 โโ node-int64@0.4.0 โโ node-ipc@9.2.1 โโ node-libs-browser@2.2.1 โโ node-releases@2.0.8 โโ node-rsa@1.1.1 โโ node-stream-zip@1.15.0 โโ node-version@1.2.0 โโ normalize-css-color@1.0.2 โโ normalize-path@3.0.0 โโ normalize-range@0.1.2 โโ normalize-url@6.1.0 โโ npm-package-arg@7.0.0 โโ npm-run-path@4.0.1 โโ nth-check@2.1.1 โโ nullthrows@1.1.1 โโ nwsapi@2.2.2 โโ nx@15.4.1 โโ ob1@0.72.3 โโ object-assign@4.1.1 โโ object-copy@0.1.0 โโ object-inspect@1.12.2 โโ object-is@1.1.5 โโ object-keys@1.1.1 โโ object-treeify@1.1.33 โโ object-visit@1.0.1 โโ object.assign@4.1.4 โโ object.entries@1.1.6 โโ object.fromentries@2.0.6 โโ object.getownpropertydescriptors@2.1.5 โโ object.hasown@1.1.2 โโ object.pick@1.3.0 โโ object.values@1.1.6 โโ obuf@1.1.2 โโ on-finished@2.3.0 โโ on-headers@1.0.2 โโ once@1.4.0 โโ onetime@5.1.2 โโ open@8.4.0 โโ opencollective-postinstall@2.0.3 โโ opener@1.5.2 โโ opn@5.5.0 โโ optimize-css-assets-webpack-plugin@5.0.8 โโ optionator@0.9.1 โโ ora@5.4.1 โโ os-browserify@0.3.0 โโ os-homedir@1.0.2 โโ os-tmpdir@1.0.2 โโ osenv@0.1.5 โโ p-any@2.1.0 โโ p-cancelable@2.1.1 โโ p-finally@1.0.0 โโ p-limit@3.1.0 โโ p-locate@5.0.0 โโ p-map@4.0.0 โโ p-queue@6.6.2 โโ p-retry@3.0.1 โโ p-some@4.1.0 โโ p-timeout@3.2.0 โโ p-try@2.2.0 โโ package-json@6.4.0 โโ pako@1.0.11 โโ parallel-transform@1.2.0 โโ param-case@3.0.4 โโ parent-module@1.0.1 โโ parse-asn1@5.1.6 โโ parse-json@5.2.0 โโ parse-png@2.1.0 โโ parse-srcset@1.0.2 โโ parse5-html-rewriting-stream@6.0.1 โโ parse5-sax-parser@6.0.1 โโ parse5@6.0.1 โโ parseurl@1.3.3 โโ pascal-case@3.1.2 โโ pascalcase@0.1.1 โโ password-prompt@1.1.2 โโ path-browserify@0.0.1 โโ path-dirname@1.0.2 โโ path-exists@3.0.0 โโ path-is-absolute@1.0.1 โโ path-is-inside@1.0.2 โโ path-is-network-drive@1.0.20 โโ path-key@2.0.1 โโ path-parse@1.0.7 โโ path-strip-sep@1.0.17 โโ path-to-regexp@0.1.7 โโ path-type@4.0.0 โโ pbkdf2@3.1.2 โโ picocolors@1.0.0 โโ picomatch@2.3.1 โโ pify@4.0.1 โโ pinkie-promise@2.0.1 โโ pinkie@2.0.4 โโ pirates@4.0.5 โโ pkg-dir@4.2.0 โโ pkg-up@3.1.0 โโ plist@3.0.6 โโ pngjs@3.4.0 โโ pnp-webpack-plugin@1.7.0 โโ portfinder@1.0.32 โโ posix-character-classes@0.1.1 โโ postcss-calc@8.2.4 โโ postcss-colormin@5.3.0 โโ postcss-convert-values@5.1.3 โโ postcss-discard-comments@5.1.2 โโ postcss-discard-duplicates@5.1.0 โโ postcss-discard-empty@5.1.1 โโ postcss-discard-overridden@5.1.0 โโ postcss-import@14.1.0 โโ postcss-load-config@3.1.4 โโ postcss-loader@6.2.1 โโ postcss-merge-longhand@5.1.7 โโ postcss-merge-rules@5.1.3 โโ postcss-minify-font-values@5.1.0 โโ postcss-minify-gradients@5.1.1 โโ postcss-minify-params@5.1.4 โโ postcss-minify-selectors@5.2.1 โโ postcss-modules-extract-imports@3.0.0 โโ postcss-modules-local-by-default@4.0.0 โโ postcss-modules-scope@3.0.0 โโ postcss-modules-values@4.0.0 โโ postcss-modules@4.3.1 โโ postcss-normalize-charset@5.1.0 โโ postcss-normalize-display-values@5.1.0 โโ postcss-normalize-positions@5.1.1 โโ postcss-normalize-repeat-style@5.1.1 โโ postcss-normalize-string@5.1.0 โโ postcss-normalize-timing-functions@5.1.0 โโ postcss-normalize-unicode@5.1.1 โโ postcss-normalize-url@5.1.0 โโ postcss-normalize-whitespace@5.1.1 โโ postcss-ordered-values@5.1.3 โโ postcss-reduce-initial@5.1.1 โโ postcss-reduce-transforms@5.1.0 โโ postcss-safe-parser@4.0.2 โโ postcss-selector-parser@6.0.11 โโ postcss-svgo@5.1.0 โโ postcss-unique-selectors@5.1.1 โโ postcss-value-parser@4.2.0 โโ postcss@7.0.39 โโ prelude-ls@1.1.2 โโ prepend-http@2.0.0 โโ prettier@2.8.1 โโ pretty-bytes@5.6.0 โโ pretty-error@2.1.2 โโ pretty-format@28.1.3 โโ probe-image-size@6.0.0 โโ process-nextick-args@2.0.1 โโ process@0.11.10 โโ progress@2.0.3 โโ promise-inflight@1.0.1 โโ promise-limit@2.7.0 โโ promise-polyfill@6.1.0 โโ promise-retry@2.0.1 โโ promise.series@0.2.0 โโ promise@8.3.0 โโ prompts@2.4.2 โโ prop-types@15.8.1 โโ proper-lockfile@3.2.0 โโ proxy-addr@2.0.7 โโ proxy-from-env@1.1.0 โโ prr@1.0.1 โโ pseudomap@1.0.2 โโ psl@1.9.0 โโ public-encrypt@4.0.3 โโ pump@3.0.0 โโ pumpify@1.5.1 โโ punycode@2.1.1 โโ q@1.5.1 โโ qrcode-terminal@0.11.0 โโ qs@6.11.0 โโ querystring-es3@0.2.1 โโ querystring@0.2.0 โโ querystringify@2.2.0 โโ queue-microtask@1.2.3 โโ queue@6.0.2 โโ quick-lru@5.1.1 โโ randombytes@2.1.0 โโ randomfill@1.0.4 โโ range-parser@1.2.1 โโ raw-body@2.4.0 โโ raw-loader@4.0.2 โโ rc@1.2.8 โโ react-dev-utils@11.0.4 โโ react-devtools-core@4.24.0 โโ react-dom@18.1.0 โโ react-error-overlay@6.0.11 โโ react-is@18.2.0 โโ react-native-codegen@0.70.6 โโ react-native-gradle-plugin@0.70.3 โโ react-native-svg-transformer@1.0.0 โโ react-native-svg@13.4.0 โโ react-native-web@0.18.10 โโ react-native@0.70.5 โโ react-refresh@0.4.3 โโ react-shallow-renderer@16.15.0 โโ react-test-renderer@18.2.0 โโ react@18.1.0 โโ read-cache@1.0.0 โโ read-chunk@3.2.0 โโ read-last-lines@1.6.0 โโ readable-stream@2.3.7 โโ readdirp@3.6.0 โโ readline@1.3.0 โโ recast@0.20.5 โโ recursive-readdir@2.2.2 โโ redent@3.0.0 โโ redeyed@2.1.1 โโ regenerate-unicode-properties@10.1.0 โโ regenerate@1.4.2 โโ regenerator-runtime@0.13.11 โโ regenerator-transform@0.15.1 โโ regex-not@1.0.2 โโ regexp.prototype.flags@1.4.3 โโ regexpp@3.2.0 โโ regexpu-core@5.2.2 โโ registry-auth-token@3.4.0 โโ registry-url@5.1.0 โโ regjsgen@0.7.1 โโ regjsparser@0.9.1 โโ relateurl@0.2.7 โโ remove-trailing-separator@1.1.0 โโ remove-trailing-slash@0.1.1 โโ renderkid@2.0.7 โโ repeat-element@1.1.4 โโ repeat-string@1.6.1 โโ require-directory@2.1.1 โโ require-from-string@2.0.2 โโ require-main-filename@2.0.0 โโ requireg@0.2.2 โโ requires-port@1.0.0 โโ reselect@4.1.7 โโ resolve-alpn@1.2.1 โโ resolve-cwd@3.0.0 โโ resolve-from@5.0.0 โโ resolve-url@0.2.1 โโ resolve.exports@1.1.0 โโ resolve@1.22.1 โโ responselike@2.0.1 โโ restore-cursor@3.1.0 โโ ret@0.1.15 โโ retry@0.12.0 โโ reusify@1.0.4 โโ rgb-regex@1.0.1 โโ rgba-regex@1.0.0 โโ rimraf@3.0.2 โโ ripemd160@2.0.2 โโ rollup-plugin-copy@3.4.0 โโ rollup-plugin-peer-deps-external@2.2.4 โโ rollup-plugin-postcss@4.0.2 โโ rollup-plugin-typescript2@0.31.2 โโ rollup-pluginutils@2.8.2 โโ rollup@2.79.1 โโ router-ips@1.0.0 โโ run-parallel@1.2.0 โโ run-queue@1.0.3 โโ rxjs@6.6.7 โโ safe-buffer@5.2.1 โโ safe-identifier@0.4.2 โโ safe-json-stringify@1.2.0 โโ safe-regex-test@1.0.0 โโ safe-regex@1.1.0 โโ safer-buffer@2.1.2 โโ sanitize-filename@1.6.3 โโ sass-loader@12.6.0 โโ sass@1.57.1 โโ sax@1.2.4 โโ saxes@5.0.1 โโ scheduler@0.22.0 โโ schema-utils@2.7.1 โโ secure-compare@3.0.1 โโ select-hose@2.0.0 โโ selfsigned@1.10.14 โโ semver@7.3.8 โโ send@0.18.0 โโ serialize-error@6.0.0 โโ serialize-javascript@4.0.0 โโ serve-index@1.9.1 โโ serve-static@1.15.0 โโ set-blocking@2.0.0 โโ set-value@2.0.1 โโ setimmediate@1.0.5 โโ setprototypeof@1.1.0 โโ sha.js@2.4.11 โโ shallow-clone@3.0.1 โโ shebang-command@1.2.0 โโ shebang-regex@1.0.0 โโ shell-quote@1.7.4 โโ side-channel@1.0.4 โโ signal-exit@3.0.7 โโ simple-plist@1.3.1 โโ simple-swizzle@0.2.2 โโ sisteransi@1.0.5 โโ slash@3.0.0 โโ slice-ansi@2.1.0 โโ slugify@1.6.5 โโ snapdragon-node@2.1.1 โโ snapdragon-util@3.0.1 โโ snapdragon@0.8.2 โโ sockjs-client@1.4.0 โโ sockjs@0.3.20 โโ source-list-map@2.0.1 โโ source-map-js@1.0.2 โโ source-map-loader@3.0.2 โโ source-map-resolve@0.5.3 โโ source-map-support@0.5.21 โโ source-map-url@0.4.1 โโ source-map@0.6.1 โโ sourcemap-codec@1.4.8 โโ spdy-transport@3.0.0 โโ spdy@4.0.2 โโ split-string@3.1.0 โโ split@1.0.1 โโ sprintf-js@1.0.3 โโ ssri@8.0.1 โโ stable@0.1.8 โโ stack-generator@2.0.10 โโ stack-utils@2.0.6 โโ stackframe@1.3.4 โโ stacktrace-gps@3.1.2 โโ stacktrace-js@2.0.2 โโ stacktrace-parser@0.1.10 โโ static-extend@0.1.2 โโ statuses@2.0.1 โโ stream-browserify@2.0.2 โโ stream-buffers@2.2.0 โโ stream-chain@2.2.5 โโ stream-each@1.2.3 โโ stream-http@2.8.3 โโ stream-json@1.7.5 โโ stream-parser@0.3.1 โโ stream-shift@1.0.1 โโ streamsearch@1.1.0 โโ string_decoder@1.3.0 โโ string-hash@1.1.3 โโ string-length@4.0.2 โโ string-width@4.2.3 โโ string.prototype.matchall@4.0.8 โโ string.prototype.trimend@1.0.6 โโ string.prototype.trimstart@1.0.6 โโ strip-ansi@6.0.1 โโ strip-bom@3.0.0 โโ strip-eof@1.0.0 โโ strip-final-newline@2.0.0 โโ strip-indent@3.0.0 โโ strip-json-comments@3.1.1 โโ strong-log-transformer@2.1.0 โโ structured-headers@0.4.1 โโ style-inject@0.3.0 โโ style-loader@3.3.1 โโ stylehacks@5.1.1 โโ styleq@0.1.3 โโ stylus-loader@7.1.0 โโ stylus@0.55.0 โโ sucrase@3.29.0 โโ sudo-prompt@9.1.1 โโ superstruct@0.6.2 โโ supports-color@7.2.0 โโ supports-hyperlinks@2.3.0 โโ supports-preserve-symlinks-flag@1.0.0 โโ svg-parser@2.0.4 โโ svgo@2.8.0 โโ symbol-tree@3.2.4 โโ tapable@1.1.3 โโ tar-fs@2.1.1 โโ tar-stream@2.2.0 โโ tar@6.1.13 โโ telnet-client@1.2.8 โโ temp-dir@2.0.0 โโ temp@0.8.4 โโ tempfile@2.0.0 โโ tempy@0.3.0 โโ terminal-link@2.1.1 โโ terser-webpack-plugin@5.3.6 โโ terser@4.8.1 โโ test-exclude@6.0.0 โโ text-table@0.2.0 โโ thenify-all@1.6.0 โโ thenify@3.3.1 โโ throat@6.0.1 โโ through@2.3.8 โโ thunky@1.1.0 โโ timers-browserify@2.0.12 โโ timsort@0.3.0 โโ tmp@0.2.1 โโ to-arraybuffer@1.0.1 โโ to-fast-properties@2.0.0 โโ to-object-path@0.3.0 โโ to-readable-stream@1.0.0 โโ to-regex-range@2.1.1 โโ to-regex@3.0.2 โโ toidentifier@1.0.0 โโ tough-cookie@4.1.2 โโ tr46@3.0.0 โโ trace-event-lib@1.3.1 โโ traverse@0.6.7 โโ tree-kill@1.2.2 โโ truncate-utf8-bytes@1.0.2 โโ ts-interface-checker@0.1.13 โโ ts-jest@28.0.5 โโ ts-loader@9.4.2 โโ ts-node@10.9.1 โโ ts-pnp@1.2.0 โโ tsconfig-paths-webpack-plugin@3.5.2 โโ tsconfig-paths@3.14.1 โโ tslib@2.4.1 โโ tsutils@3.21.0 โโ tty-browserify@0.0.0 โโ tunnel-agent@0.6.0 โโ turndown@7.1.1 โโ type-check@0.3.2 โโ type-detect@4.0.8 โโ type-fest@0.20.2 โโ type-is@1.6.18 โโ typed-assert@1.0.9 โโ typedarray@0.0.6 โโ typescript@4.8.4 โโ ua-parser-js@0.7.32 โโ uglify-es@3.3.9 โโ unbox-primitive@1.0.2 โโ unicode-canonical-property-names-ecmascript@2.0.0 โโ unicode-match-property-ecmascript@2.0.0 โโ unicode-match-property-value-ecmascript@2.1.0 โโ unicode-property-aliases-ecmascript@2.1.0 โโ union-value@1.0.1 โโ union@0.5.0 โโ uniq@1.0.1 โโ uniqs@2.0.0 โโ unique-filename@1.1.1 โโ unique-slug@2.0.2 โโ unique-string@1.0.0 โโ universalify@0.1.2 โโ unpipe@1.0.0 โโ unquote@1.1.1 โโ unset-value@1.0.0 โโ untildify@3.0.3 โโ upath@1.2.0 โโ update-browserslist-db@1.0.10 โโ update-check@1.5.3 โโ uri-js@4.4.1 โโ urix@0.1.0 โโ url-join@4.0.0 โโ url-loader@4.1.1 โโ url-parse-lax@3.0.0 โโ url-parse@1.5.10 โโ url@0.11.0 โโ use-sync-external-store@1.2.0 โโ use@3.1.1 โโ utf8-byte-length@1.0.4 โโ util-deprecate@1.0.2 โโ util.promisify@1.0.0 โโ util@0.11.1 โโ utils-merge@1.0.1 โโ uuid@3.4.0 โโ v8-compile-cache-lib@3.0.1 โโ v8-compile-cache@2.3.0 โโ v8-to-istanbul@9.0.1 โโ valid-url@1.0.9 โโ validate-npm-package-name@3.0.0 โโ vary@1.1.2 โโ vendors@1.0.4 โโ vlq@1.0.1 โโ vm-browserify@1.1.2 โโ w3c-hr-time@1.0.2 โโ w3c-xmlserializer@3.0.0 โโ walker@1.0.8 โโ watchpack-chokidar2@2.0.1 โโ watchpack@1.7.5 โโ wbuf@1.7.3 โโ wcwidth@1.0.1 โโ webidl-conversions@7.0.0 โโ webpack-dev-middleware@3.7.3 โโ webpack-dev-server@3.11.0 โโ webpack-log@2.0.0 โโ webpack-manifest-plugin@2.2.0 โโ webpack-merge@5.8.0 โโ webpack-node-externals@3.0.0 โโ webpack-sources@1.4.3 โโ webpack-subresource-integrity@5.1.0 โโ webpack@4.43.0 โโ websocket-driver@0.7.4 โโ websocket-extensions@0.1.4 โโ whatwg-encoding@2.0.0 โโ whatwg-fetch@3.6.2 โโ whatwg-mimetype@3.0.0 โโ whatwg-url@10.0.0 โโ which-boxed-primitive@1.0.2 โโ which-collection@1.0.1 โโ which-module@2.0.0 โโ which-typed-array@1.1.9 โโ which@1.3.1 โโ widest-line@3.1.0 โโ wildcard@2.0.0 โโ with-open-file@0.1.7 โโ wonka@6.1.2 โโ word-wrap@1.2.3 โโ worker-farm@1.7.0 โโ worker-rpc@0.1.1 โโ wrap-ansi@7.0.0 โโ wrappy@1.0.2 โโ write-file-atomic@2.4.3 โโ ws@7.5.9 โโ xcode@3.0.1 โโ xdl@59.2.55 โโ xml-js@1.6.11 โโ xml-name-validator@4.0.0 โโ xml2js@0.4.23 โโ xmlbuilder@14.0.0 โโ xmlchars@2.2.0 โโ xtend@4.0.2 โโ y18n@4.0.3 โโ yallist@4.0.0 โโ yaml@1.10.2 โโ yargs-parser@21.1.1 โโ yargs-unparser@2.0.0 โโ yargs@15.4.1 โโ yn@3.1.1 โโ yocto-queue@0.1.0 ``` #### `firebase.json` for react-native-firebase v6: ```json # N/A ```
iOS
Click To Expand
#### `ios/Podfile`: - [ ] I'm not using Pods - [x] I'm using Pods and my Podfile looks like: ```ruby require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods") require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules") require 'json' podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {} platform :ios, podfile_properties['ios.deploymentTarget'] || '13.0' install! 'cocoapods', :deterministic_uuids => false target 'RnfbApp' do use_expo_modules! config = use_native_modules! use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] # Flags change depending on the env values. flags = get_default_flags() use_react_native!( :path => config[:reactNativePath], :hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes', :fabric_enabled => flags[:fabric_enabled], # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/..", # # Uncomment to opt-in to using Flipper # Note that if you have use_frameworks! enabled, Flipper will not work # :flipper_configuration => !ENV['CI'] ? FlipperConfiguration.enabled : FlipperConfiguration.disabled, ) post_install do |installer| react_native_post_install( installer, # Set `mac_catalyst_enabled` to `true` in order to apply patches # necessary for Mac Catalyst builds :mac_catalyst_enabled => false ) __apply_Xcode_12_5_M1_post_install_workaround(installer) # This is necessary for Xcode 14, because it signs resource bundles by default # when building for devices. installer.target_installation_results.pod_target_installation_results .each do |pod_name, target_installation_result| target_installation_result.resource_bundle_targets.each do |resource_bundle_target| resource_bundle_target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end end end post_integrate do |installer| begin expo_patch_react_imports!(installer) rescue => e Pod::UI.warn e end end end ``` #### `AppDelegate.m`: ```objc // N/A ```
Android
Click To Expand
#### Have you converted to AndroidX? - [ ] my application is an AndroidX application? - [ ] I am using `android/gradle.settings` `jetifier=true` for Android compatibility? - [ ] I am using the NPM package `jetifier` for react-native compatibility? #### `android/build.gradle`: ```groovy // N/A ``` #### `android/app/build.gradle`: ```groovy // N/A ``` #### `android/settings.gradle`: ```groovy // N/A ``` #### `MainApplication.java`: ```java // N/A ``` #### `AndroidManifest.xml`: ```xml ```
Environment
Click To Expand
**`react-native info` output:** ``` expo-env-info 1.0.5 environment info: System: OS: macOS 13.1 Shell: 5.8.1 - /bin/zsh Binaries: Node: 16.18.1 - ~/.nvm/versions/node/v16.18.1/bin/node Yarn: 1.22.19 - ~/.nvm/versions/node/v16.18.1/bin/yarn npm: 9.1.3 - ~/.nvm/versions/node/v16.18.1/bin/npm Managers: CocoaPods: 1.11.3 - /opt/homebrew/bin/pod SDKs: iOS SDK: Platforms: DriverKit 22.2, iOS 16.2, macOS 13.1, tvOS 16.1, watchOS 9.1 IDEs: Android Studio: 2021.3 AI-213.7172.25.2113.9123335 Xcode: 14.2/14C18 - /usr/bin/xcodebuild npmPackages: @expo/metro-config: * => 0.5.1 @expo/webpack-config: * => 0.17.3 expo: * => 47.0.8 react: 18.1.0 => 18.2.0 react-native: 0.70.5 => 0.70.5 react-native-web: * => 0.18.10 ``` - **Platform that you're experiencing the issue on**: - [x] iOS - [ ] Android - [ ] **iOS** but have not tested behavior on Android - [ ] **Android** but have not tested behavior on iOS - [ ] Both - **`react-native-firebase` version you're using that has this issue:** - `16.5.0` - **`Firebase` module(s) you're using that has the issue:** - `e.g. Instance ID` - **Are you using `TypeScript`?** - `Y` & `4.8.2`
React Native Firebase
andInvertase
on Twitter for updates on the library.