This commit is contained in:
Tommy Nguyen 2023-11-15 17:44:43 +01:00 коммит произвёл GitHub
Родитель d63cf49f22
Коммит e2891ce2e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
13 изменённых файлов: 734 добавлений и 561 удалений

Просмотреть файл

@ -0,0 +1,2 @@
---
---

Просмотреть файл

@ -0,0 +1,33 @@
diff --git a/scripts/cocoapods/codegen.rb b/scripts/cocoapods/codegen.rb
index 56d120fcceda051e8bdda6f0af63dcf2dd16d4a6..674d48d12ca0a867094052394273a255d2005143 100644
--- a/scripts/cocoapods/codegen.rb
+++ b/scripts/cocoapods/codegen.rb
@@ -11,23 +11,12 @@
# - dir_manager: a class that implements the `Dir` interface. Defaults to `Dir`, the Dependency can be injected for testing purposes.
# @throws an error if it could not find the codegen folder.
def build_codegen!(react_native_path, relative_installation_root, dir_manager: Dir)
- codegen_repo_path = "#{relative_installation_root}/#{react_native_path}/../react-native-codegen";
- codegen_npm_path = "#{relative_installation_root}/#{react_native_path}/../@react-native/codegen";
- codegen_cli_path = ""
+ codegen_repo_path = "#{relative_installation_root}/#{react_native_path}/../react-native-codegen"
+ return unless dir_manager.exist?(codegen_repo_path) && !dir_manager.exist?("#{codegen_repo_path}/lib")
- if dir_manager.exist?(codegen_repo_path)
- codegen_cli_path = codegen_repo_path
- elsif dir_manager.exist?(codegen_npm_path)
- codegen_cli_path = codegen_npm_path
- else
- raise "[codegen] Could not find react-native-codegen."
- end
-
- if !dir_manager.exist?("#{codegen_cli_path}/lib")
- Pod::UI.puts "[Codegen] building #{codegen_cli_path}."
- system("#{codegen_cli_path}/scripts/oss/build.sh")
- end
- end
+ Pod::UI.puts "[Codegen] building #{codegen_repo_path}"
+ system("#{codegen_repo_path}/scripts/oss/build.sh")
+end
# It generates an empty `ThirdPartyProvider`, required by Fabric to load the components
#

Просмотреть файл

@ -0,0 +1,33 @@
diff --git a/scripts/cocoapods/codegen.rb b/scripts/cocoapods/codegen.rb
index 56d120fcceda051e8bdda6f0af63dcf2dd16d4a6..674d48d12ca0a867094052394273a255d2005143 100644
--- a/scripts/cocoapods/codegen.rb
+++ b/scripts/cocoapods/codegen.rb
@@ -11,23 +11,12 @@
# - dir_manager: a class that implements the `Dir` interface. Defaults to `Dir`, the Dependency can be injected for testing purposes.
# @throws an error if it could not find the codegen folder.
def build_codegen!(react_native_path, relative_installation_root, dir_manager: Dir)
- codegen_repo_path = "#{relative_installation_root}/#{react_native_path}/../react-native-codegen";
- codegen_npm_path = "#{relative_installation_root}/#{react_native_path}/../@react-native/codegen";
- codegen_cli_path = ""
+ codegen_repo_path = "#{relative_installation_root}/#{react_native_path}/../react-native-codegen"
+ return unless dir_manager.exist?(codegen_repo_path) && !dir_manager.exist?("#{codegen_repo_path}/lib")
- if dir_manager.exist?(codegen_repo_path)
- codegen_cli_path = codegen_repo_path
- elsif dir_manager.exist?(codegen_npm_path)
- codegen_cli_path = codegen_npm_path
- else
- raise "[codegen] Could not find react-native-codegen."
- end
-
- if !dir_manager.exist?("#{codegen_cli_path}/lib")
- Pod::UI.puts "[Codegen] building #{codegen_cli_path}."
- system("#{codegen_cli_path}/scripts/oss/build.sh")
- end
- end
+ Pod::UI.puts "[Codegen] building #{codegen_repo_path}"
+ system("#{codegen_repo_path}/scripts/oss/build.sh")
+end
# It generates an empty `ThirdPartyProvider`, required by Fabric to load the components
#

Просмотреть файл

@ -7,7 +7,7 @@ logFilters:
level: discard
- code: YN0013 # X can't be found in the cache and will be fetched from the remote registry
level: discard
nodeLinker: node-modules
nodeLinker: pnpm
npmRegistryServer: "https://registry.npmjs.org"
packageExtensions:
"@fluentui/utilities@*":
@ -17,6 +17,13 @@ packageExtensions:
"@microsoft/eslint-plugin-sdl@0.x":
peerDependencies:
eslint: ">=5.16.0"
"@react-native-community/cli-debugger-ui@*":
dependencies:
"@babel/runtime": "^7.20.0"
"@react-native/codegen@*":
dependencies:
glob: "^7.1.1"
invariant: "^2.2.4"
babel-plugin-transform-flow-enums@*:
peerDependencies:
"@babel/core": ^7.20.0

Просмотреть файл

@ -54,6 +54,7 @@
"@react-native-community/cli": "^11.3.6",
"@react-native-community/cli-platform-android": "^11.3.6",
"@react-native-community/cli-platform-ios": "^11.3.6",
"@rnx-kit/react-native-host": "workspace:*",
"@vue/compiler-sfc": "link:./incubator/ignore",
"depcheck/@babel/parser": "~7.23.0",
"depcheck/@babel/traverse": "~7.23.0",
@ -61,7 +62,9 @@
"nx/glob": "^7.1.4",
"nx/minimatch": "^3.0.5",
"nx/semver": "^7.3.5",
"react-native-windows/metro-source-map": "^0.76.8"
"react-native-macos@^0.72.0": "patch:react-native-macos@npm%3A0.72.7#./.yarn/patches/react-native-macos-npm-0.72.7-e19b4d7895.patch",
"react-native-windows/metro-source-map": "^0.76.8",
"react-native@^0.72.0": "patch:react-native@npm%3A0.72.6#./.yarn/patches/react-native-npm-0.72.6-9d6fdd645f.patch"
},
"workspaces": {
"packages": [

Просмотреть файл

@ -1,5 +1,5 @@
buildscript {
def androidTestAppDir = "../../../node_modules/react-native-test-app/android"
def androidTestAppDir = "../node_modules/react-native-test-app/android"
apply(from: "${androidTestAppDir}/dependencies.gradle")
repositories {
@ -18,7 +18,7 @@ allprojects {
repositories {
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("${rootDir}/../../../node_modules/react-native/android")
url("${rootDir}/../node_modules/react-native/android")
}
mavenCentral()
google()

Просмотреть файл

@ -8,5 +8,5 @@ pluginManagement {
rootProject.name = "example"
apply(from: "../../../node_modules/react-native-test-app/test-app.gradle")
apply(from: "../node_modules/react-native-test-app/test-app.gradle")
applyTestAppSettings(settings)

Просмотреть файл

@ -1,6 +1,6 @@
platform :ios, '14.0'
require_relative '../../../node_modules/react-native-test-app/test_app'
require_relative '../node_modules/react-native-test-app/test_app'
workspace 'SampleCrossApp.xcworkspace'

Просмотреть файл

@ -1,14 +1,14 @@
PODS:
- boost (1.76.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.72.4)
- FBReactNativeSpec (0.72.4):
- FBLazyVector (0.72.6)
- FBReactNativeSpec (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTRequired (= 0.72.4)
- RCTTypeSafety (= 0.72.4)
- React-Core (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- RCTRequired (= 0.72.6)
- RCTTypeSafety (= 0.72.6)
- React-Core (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- fmt (6.2.1)
- glog (0.3.5)
- MSAL (1.2.10):
@ -25,26 +25,26 @@ PODS:
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- RCTRequired (0.72.4)
- RCTTypeSafety (0.72.4):
- FBLazyVector (= 0.72.4)
- RCTRequired (= 0.72.4)
- React-Core (= 0.72.4)
- React (0.72.4):
- React-Core (= 0.72.4)
- React-Core/DevSupport (= 0.72.4)
- React-Core/RCTWebSocket (= 0.72.4)
- React-RCTActionSheet (= 0.72.4)
- React-RCTAnimation (= 0.72.4)
- React-RCTBlob (= 0.72.4)
- React-RCTImage (= 0.72.4)
- React-RCTLinking (= 0.72.4)
- React-RCTNetwork (= 0.72.4)
- React-RCTSettings (= 0.72.4)
- React-RCTText (= 0.72.4)
- React-RCTVibration (= 0.72.4)
- React-callinvoker (0.72.4)
- React-Codegen (0.72.4):
- RCTRequired (0.72.6)
- RCTTypeSafety (0.72.6):
- FBLazyVector (= 0.72.6)
- RCTRequired (= 0.72.6)
- React-Core (= 0.72.6)
- React (0.72.6):
- React-Core (= 0.72.6)
- React-Core/DevSupport (= 0.72.6)
- React-Core/RCTWebSocket (= 0.72.6)
- React-RCTActionSheet (= 0.72.6)
- React-RCTAnimation (= 0.72.6)
- React-RCTBlob (= 0.72.6)
- React-RCTImage (= 0.72.6)
- React-RCTLinking (= 0.72.6)
- React-RCTNetwork (= 0.72.6)
- React-RCTSettings (= 0.72.6)
- React-RCTText (= 0.72.6)
- React-RCTVibration (= 0.72.6)
- React-callinvoker (0.72.6)
- React-Codegen (0.72.6):
- DoubleConversion
- FBReactNativeSpec
- glog
@ -59,10 +59,10 @@ PODS:
- React-rncore
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- React-Core (0.72.4):
- React-Core (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.4)
- React-Core/Default (= 0.72.6)
- React-cxxreact
- React-jsc
- React-jsi
@ -72,7 +72,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/CoreModulesHeaders (0.72.4):
- React-Core/CoreModulesHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -85,7 +85,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/Default (0.72.4):
- React-Core/Default (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-cxxreact
@ -97,22 +97,22 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/DevSupport (0.72.4):
- React-Core/DevSupport (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.4)
- React-Core/RCTWebSocket (= 0.72.4)
- React-Core/Default (= 0.72.6)
- React-Core/RCTWebSocket (= 0.72.6)
- React-cxxreact
- React-jsc
- React-jsi
- React-jsiexecutor
- React-jsinspector (= 0.72.4)
- React-jsinspector (= 0.72.6)
- React-perflogger
- React-runtimeexecutor
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTActionSheetHeaders (0.72.4):
- React-Core/RCTActionSheetHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -125,7 +125,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTAnimationHeaders (0.72.4):
- React-Core/RCTAnimationHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -138,7 +138,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTBlobHeaders (0.72.4):
- React-Core/RCTBlobHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -151,7 +151,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTImageHeaders (0.72.4):
- React-Core/RCTImageHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -164,7 +164,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTLinkingHeaders (0.72.4):
- React-Core/RCTLinkingHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -177,7 +177,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTNetworkHeaders (0.72.4):
- React-Core/RCTNetworkHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -190,7 +190,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTSettingsHeaders (0.72.4):
- React-Core/RCTSettingsHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -203,7 +203,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTTextHeaders (0.72.4):
- React-Core/RCTTextHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -216,7 +216,7 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTVibrationHeaders (0.72.4):
- React-Core/RCTVibrationHeaders (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -229,10 +229,10 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-Core/RCTWebSocket (0.72.4):
- React-Core/RCTWebSocket (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.4)
- React-Core/Default (= 0.72.6)
- React-cxxreact
- React-jsc
- React-jsi
@ -242,50 +242,50 @@ PODS:
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- React-CoreModules (0.72.4):
- React-CoreModules (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.4)
- React-Codegen (= 0.72.4)
- React-Core/CoreModulesHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- RCTTypeSafety (= 0.72.6)
- React-Codegen (= 0.72.6)
- React-Core/CoreModulesHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- React-RCTBlob
- React-RCTImage (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTImage (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- SocketRocket (= 0.6.1)
- React-cxxreact (0.72.4):
- React-cxxreact (0.72.6):
- boost (= 1.76.0)
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.4)
- React-debug (= 0.72.4)
- React-jsi (= 0.72.4)
- React-jsinspector (= 0.72.4)
- React-logger (= 0.72.4)
- React-perflogger (= 0.72.4)
- React-runtimeexecutor (= 0.72.4)
- React-debug (0.72.4)
- React-jsc (0.72.4):
- React-jsc/Fabric (= 0.72.4)
- React-jsi (= 0.72.4)
- React-jsc/Fabric (0.72.4):
- React-jsi (= 0.72.4)
- React-jsi (0.72.4):
- React-callinvoker (= 0.72.6)
- React-debug (= 0.72.6)
- React-jsi (= 0.72.6)
- React-jsinspector (= 0.72.6)
- React-logger (= 0.72.6)
- React-perflogger (= 0.72.6)
- React-runtimeexecutor (= 0.72.6)
- React-debug (0.72.6)
- React-jsc (0.72.6):
- React-jsc/Fabric (= 0.72.6)
- React-jsi (= 0.72.6)
- React-jsc/Fabric (0.72.6):
- React-jsi (= 0.72.6)
- React-jsi (0.72.6):
- boost (= 1.76.0)
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-jsiexecutor (0.72.4):
- React-jsiexecutor (0.72.6):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-cxxreact (= 0.72.4)
- React-jsi (= 0.72.4)
- React-perflogger (= 0.72.4)
- React-jsinspector (0.72.4)
- React-logger (0.72.4):
- React-cxxreact (= 0.72.6)
- React-jsi (= 0.72.6)
- React-perflogger (= 0.72.6)
- React-jsinspector (0.72.6)
- React-logger (0.72.6):
- glog
- React-NativeModulesApple (0.72.4):
- React-NativeModulesApple (0.72.6):
- React-callinvoker
- React-Core
- React-cxxreact
@ -293,17 +293,17 @@ PODS:
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- React-perflogger (0.72.4)
- React-RCTActionSheet (0.72.4):
- React-Core/RCTActionSheetHeaders (= 0.72.4)
- React-RCTAnimation (0.72.4):
- React-perflogger (0.72.6)
- React-RCTActionSheet (0.72.6):
- React-Core/RCTActionSheetHeaders (= 0.72.6)
- React-RCTAnimation (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.4)
- React-Codegen (= 0.72.4)
- React-Core/RCTAnimationHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTAppDelegate (0.72.4):
- RCTTypeSafety (= 0.72.6)
- React-Codegen (= 0.72.6)
- React-Core/RCTAnimationHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTAppDelegate (0.72.6):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
@ -315,91 +315,90 @@ PODS:
- React-RCTNetwork
- React-runtimescheduler
- ReactCommon/turbomodule/core
- React-RCTBlob (0.72.4):
- React-RCTBlob (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- React-Codegen (= 0.72.4)
- React-Core/RCTBlobHeaders (= 0.72.4)
- React-Core/RCTWebSocket (= 0.72.4)
- React-jsi (= 0.72.4)
- React-RCTNetwork (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTImage (0.72.4):
- React-Codegen (= 0.72.6)
- React-Core/RCTBlobHeaders (= 0.72.6)
- React-Core/RCTWebSocket (= 0.72.6)
- React-jsi (= 0.72.6)
- React-RCTNetwork (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTImage (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.4)
- React-Codegen (= 0.72.4)
- React-Core/RCTImageHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- React-RCTNetwork (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTLinking (0.72.4):
- React-Codegen (= 0.72.4)
- React-Core/RCTLinkingHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTNetwork (0.72.4):
- RCTTypeSafety (= 0.72.6)
- React-Codegen (= 0.72.6)
- React-Core/RCTImageHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- React-RCTNetwork (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTLinking (0.72.6):
- React-Codegen (= 0.72.6)
- React-Core/RCTLinkingHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTNetwork (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.4)
- React-Codegen (= 0.72.4)
- React-Core/RCTNetworkHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTSettings (0.72.4):
- RCTTypeSafety (= 0.72.6)
- React-Codegen (= 0.72.6)
- React-Core/RCTNetworkHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTSettings (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.4)
- React-Codegen (= 0.72.4)
- React-Core/RCTSettingsHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-RCTText (0.72.4):
- React-Core/RCTTextHeaders (= 0.72.4)
- React-RCTVibration (0.72.4):
- RCTTypeSafety (= 0.72.6)
- React-Codegen (= 0.72.6)
- React-Core/RCTSettingsHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-RCTText (0.72.6):
- React-Core/RCTTextHeaders (= 0.72.6)
- React-RCTVibration (0.72.6):
- RCT-Folly (= 2021.07.22.00)
- React-Codegen (= 0.72.4)
- React-Core/RCTVibrationHeaders (= 0.72.4)
- React-jsi (= 0.72.4)
- ReactCommon/turbomodule/core (= 0.72.4)
- React-rncore (0.72.4)
- React-runtimeexecutor (0.72.4):
- React-jsi (= 0.72.4)
- React-runtimescheduler (0.72.4):
- React-Codegen (= 0.72.6)
- React-Core/RCTVibrationHeaders (= 0.72.6)
- React-jsi (= 0.72.6)
- ReactCommon/turbomodule/core (= 0.72.6)
- React-rncore (0.72.6)
- React-runtimeexecutor (0.72.6):
- React-jsi (= 0.72.6)
- React-runtimescheduler (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker
- React-debug
- React-jsi
- React-runtimeexecutor
- React-utils (0.72.4):
- React-utils (0.72.6):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-debug
- ReactCommon/turbomodule/bridging (0.72.4):
- ReactCommon/turbomodule/bridging (0.72.6):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.4)
- React-cxxreact (= 0.72.4)
- React-jsi (= 0.72.4)
- React-logger (= 0.72.4)
- React-perflogger (= 0.72.4)
- ReactCommon/turbomodule/core (0.72.4):
- React-callinvoker (= 0.72.6)
- React-cxxreact (= 0.72.6)
- React-jsi (= 0.72.6)
- React-logger (= 0.72.6)
- React-perflogger (= 0.72.6)
- ReactCommon/turbomodule/core (0.72.6):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.4)
- React-cxxreact (= 0.72.4)
- React-jsi (= 0.72.4)
- React-logger (= 0.72.4)
- React-perflogger (= 0.72.4)
- ReactNativeHost (0.2.8):
- React-callinvoker (= 0.72.6)
- React-cxxreact (= 0.72.6)
- React-jsi (= 0.72.6)
- React-logger (= 0.72.6)
- React-perflogger (= 0.72.6)
- ReactNativeHost (0.2.9):
- React-Core
- React-cxxreact
- ReactCommon/turbomodule/core
- ReactTestApp-DevSupport (2.5.20):
- ReactTestApp-DevSupport (2.5.28):
- React-Core
- React-jsi
- ReactTestApp-MSAL (2.1.6):
- ReactTestApp-MSAL (2.1.7):
- MSAL
- RNXAuth
- ReactTestApp-Resources (1.0.0-dev)
- RNXAuth (0.2.4):
- React-Core
@ -407,51 +406,51 @@ PODS:
- Yoga (1.14.0)
DEPENDENCIES:
- boost (from `../../../node_modules/react-native/third-party-podspecs/boost.podspec`)
- DoubleConversion (from `../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- FBLazyVector (from `../../../node_modules/react-native/Libraries/FBLazyVector`)
- FBReactNativeSpec (from `../../../node_modules/react-native/React/FBReactNativeSpec`)
- glog (from `../../../node_modules/react-native/third-party-podspecs/glog.podspec`)
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- MSAL
- RCT-Folly (from `../../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../../../node_modules/react-native/Libraries/RCTRequired`)
- RCTTypeSafety (from `../../../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../../../node_modules/react-native/`)
- React-callinvoker (from `../../../node_modules/react-native/ReactCommon/callinvoker`)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- React-Codegen (from `build/generated/ios`)
- React-Core (from `../../../node_modules/react-native/`)
- React-Core/RCTWebSocket (from `../../../node_modules/react-native/`)
- React-CoreModules (from `../../../node_modules/react-native/React/CoreModules`)
- React-cxxreact (from `../../../node_modules/react-native/ReactCommon/cxxreact`)
- React-debug (from `../../../node_modules/react-native/ReactCommon/react/debug`)
- React-jsc (from `../../../node_modules/react-native/ReactCommon/jsc`)
- React-jsi (from `../../../node_modules/react-native/ReactCommon/jsi`)
- React-jsiexecutor (from `../../../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../../../node_modules/react-native/ReactCommon/jsinspector`)
- React-logger (from `../../../node_modules/react-native/ReactCommon/logger`)
- React-NativeModulesApple (from `../../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../../../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../../../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../../../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../../../node_modules/react-native/Libraries/AppDelegate`)
- React-RCTBlob (from `../../../node_modules/react-native/Libraries/Blob`)
- React-RCTImage (from `../../../node_modules/react-native/Libraries/Image`)
- React-RCTLinking (from `../../../node_modules/react-native/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../../../node_modules/react-native/Libraries/Network`)
- React-RCTSettings (from `../../../node_modules/react-native/Libraries/Settings`)
- React-RCTText (from `../../../node_modules/react-native/Libraries/Text`)
- React-RCTVibration (from `../../../node_modules/react-native/Libraries/Vibration`)
- React-rncore (from `../../../node_modules/react-native/ReactCommon`)
- React-runtimeexecutor (from `../../../node_modules/react-native/ReactCommon/runtimeexecutor`)
- React-runtimescheduler (from `../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
- React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`)
- ReactCommon/turbomodule/core (from `../../../node_modules/react-native/ReactCommon`)
- "ReactNativeHost (from `../../../node_modules/@rnx-kit/react-native-host`)"
- ReactTestApp-DevSupport (from `../../../node_modules/react-native-test-app`)
- "ReactTestApp-MSAL (from `../../../node_modules/@rnx-kit/react-native-test-app-msal`)"
- React-Core (from `../node_modules/react-native/`)
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
- React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- React-rncore (from `../node_modules/react-native/ReactCommon`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- "ReactNativeHost (from `../../../node_modules/.store/react-native-test-app-virtual-1689c0a85d/node_modules/react-native-test-app/node_modules/@rnx-kit/react-native-host`)"
- ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`)
- "ReactTestApp-MSAL (from `../node_modules/@rnx-kit/react-native-test-app-msal`)"
- ReactTestApp-Resources (from `..`)
- "RNXAuth (from `../../../node_modules/@rnx-kit/react-native-auth`)"
- Yoga (from `../../../node_modules/react-native/ReactCommon/yoga`)
- "RNXAuth (from `../node_modules/@rnx-kit/react-native-auth`)"
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
SPEC REPOS:
trunk:
@ -461,140 +460,140 @@ SPEC REPOS:
EXTERNAL SOURCES:
boost:
:podspec: "../../../node_modules/react-native/third-party-podspecs/boost.podspec"
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
DoubleConversion:
:podspec: "../../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
FBLazyVector:
:path: "../../../node_modules/react-native/Libraries/FBLazyVector"
:path: "../node_modules/react-native/Libraries/FBLazyVector"
FBReactNativeSpec:
:path: "../../../node_modules/react-native/React/FBReactNativeSpec"
:path: "../node_modules/react-native/React/FBReactNativeSpec"
glog:
:podspec: "../../../node_modules/react-native/third-party-podspecs/glog.podspec"
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
RCT-Folly:
:podspec: "../../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTRequired:
:path: "../../../node_modules/react-native/Libraries/RCTRequired"
:path: "../node_modules/react-native/Libraries/RCTRequired"
RCTTypeSafety:
:path: "../../../node_modules/react-native/Libraries/TypeSafety"
:path: "../node_modules/react-native/Libraries/TypeSafety"
React:
:path: "../../../node_modules/react-native/"
:path: "../node_modules/react-native/"
React-callinvoker:
:path: "../../../node_modules/react-native/ReactCommon/callinvoker"
:path: "../node_modules/react-native/ReactCommon/callinvoker"
React-Codegen:
:path: build/generated/ios
React-Core:
:path: "../../../node_modules/react-native/"
:path: "../node_modules/react-native/"
React-CoreModules:
:path: "../../../node_modules/react-native/React/CoreModules"
:path: "../node_modules/react-native/React/CoreModules"
React-cxxreact:
:path: "../../../node_modules/react-native/ReactCommon/cxxreact"
:path: "../node_modules/react-native/ReactCommon/cxxreact"
React-debug:
:path: "../../../node_modules/react-native/ReactCommon/react/debug"
:path: "../node_modules/react-native/ReactCommon/react/debug"
React-jsc:
:path: "../../../node_modules/react-native/ReactCommon/jsc"
:path: "../node_modules/react-native/ReactCommon/jsc"
React-jsi:
:path: "../../../node_modules/react-native/ReactCommon/jsi"
:path: "../node_modules/react-native/ReactCommon/jsi"
React-jsiexecutor:
:path: "../../../node_modules/react-native/ReactCommon/jsiexecutor"
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../../../node_modules/react-native/ReactCommon/jsinspector"
:path: "../node_modules/react-native/ReactCommon/jsinspector"
React-logger:
:path: "../../../node_modules/react-native/ReactCommon/logger"
:path: "../node_modules/react-native/ReactCommon/logger"
React-NativeModulesApple:
:path: "../../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
:path: "../../../node_modules/react-native/ReactCommon/reactperflogger"
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
React-RCTActionSheet:
:path: "../../../node_modules/react-native/Libraries/ActionSheetIOS"
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation:
:path: "../../../node_modules/react-native/Libraries/NativeAnimation"
:path: "../node_modules/react-native/Libraries/NativeAnimation"
React-RCTAppDelegate:
:path: "../../../node_modules/react-native/Libraries/AppDelegate"
:path: "../node_modules/react-native/Libraries/AppDelegate"
React-RCTBlob:
:path: "../../../node_modules/react-native/Libraries/Blob"
:path: "../node_modules/react-native/Libraries/Blob"
React-RCTImage:
:path: "../../../node_modules/react-native/Libraries/Image"
:path: "../node_modules/react-native/Libraries/Image"
React-RCTLinking:
:path: "../../../node_modules/react-native/Libraries/LinkingIOS"
:path: "../node_modules/react-native/Libraries/LinkingIOS"
React-RCTNetwork:
:path: "../../../node_modules/react-native/Libraries/Network"
:path: "../node_modules/react-native/Libraries/Network"
React-RCTSettings:
:path: "../../../node_modules/react-native/Libraries/Settings"
:path: "../node_modules/react-native/Libraries/Settings"
React-RCTText:
:path: "../../../node_modules/react-native/Libraries/Text"
:path: "../node_modules/react-native/Libraries/Text"
React-RCTVibration:
:path: "../../../node_modules/react-native/Libraries/Vibration"
:path: "../node_modules/react-native/Libraries/Vibration"
React-rncore:
:path: "../../../node_modules/react-native/ReactCommon"
:path: "../node_modules/react-native/ReactCommon"
React-runtimeexecutor:
:path: "../../../node_modules/react-native/ReactCommon/runtimeexecutor"
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
React-runtimescheduler:
:path: "../../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
React-utils:
:path: "../../../node_modules/react-native/ReactCommon/react/utils"
:path: "../node_modules/react-native/ReactCommon/react/utils"
ReactCommon:
:path: "../../../node_modules/react-native/ReactCommon"
:path: "../node_modules/react-native/ReactCommon"
ReactNativeHost:
:path: "../../../node_modules/@rnx-kit/react-native-host"
:path: "../../../node_modules/.store/react-native-test-app-virtual-1689c0a85d/node_modules/react-native-test-app/node_modules/@rnx-kit/react-native-host"
ReactTestApp-DevSupport:
:path: "../../../node_modules/react-native-test-app"
:path: "../node_modules/react-native-test-app"
ReactTestApp-MSAL:
:path: "../../../node_modules/@rnx-kit/react-native-test-app-msal"
:path: "../node_modules/@rnx-kit/react-native-test-app-msal"
ReactTestApp-Resources:
:path: ".."
RNXAuth:
:path: "../../../node_modules/@rnx-kit/react-native-auth"
:path: "../node_modules/@rnx-kit/react-native-auth"
Yoga:
:path: "../../../node_modules/react-native/ReactCommon/yoga"
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
boost: 57d2868c099736d80fcd648bf211b4431e51a558
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5
FBReactNativeSpec: 5c9c2b923372334e04c08f1639daa59c3ee159bf
FBLazyVector: 748c0ef74f2bf4b36cfcccf37916806940a64c32
FBReactNativeSpec: d0ade3af3f7c2c274a3dc10101b5db1e8a77e22f
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
MSAL: 770fb0326a468e8a69bae03b6cf288076a2df1c9
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
RCTRequired: c0569ecc035894e4a68baecb30fe6a7ea6e399f9
RCTTypeSafety: e90354072c21236e0bcf1699011e39acd25fea2f
React: a1be3c6dc0a6e949ccd3e659781aa47bbae1868f
React-callinvoker: 1020b33f6cb1a1824f9ca2a86609fbce2a73c6ed
React-Codegen: 97df9239bfc44a4504c4840dfae3a200e4500afe
React-Core: 9df7960451a433053f30a5862728f92088a9150d
React-CoreModules: 21abab85d7ad9038ce2b1c33d39e3baaf7dc9244
React-cxxreact: 9f0bd765bbffbd2038936d1f0ba1c80ea7649e28
React-debug: 17366a3d5c5d2f5fc04f09101a4af38cb42b54ae
React-jsc: 844ccd35b8dbd105aa0430b658611a43f10ba8a5
React-jsi: 8c012b3699d7427e96866dd3a539ca9611fa2546
React-jsiexecutor: bc8a9ad812a2c88b3a41c08b5f4b3ed32d6d4766
React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
React-NativeModulesApple: 759309419da76ef4c9f331968b840022ee2aa5b1
React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
React-RCTActionSheet: 02904b932b50e680f4e26e7a686b33ebf7ef3c00
React-RCTAnimation: 88feaf0a85648fb8fd497ce749829774910276d6
React-RCTAppDelegate: b9e5fe0e4b71f30f3742225dc7085ae10681a1cd
React-RCTBlob: 455b680e457c36f8d98f4338b51cd3cbf48744bd
React-RCTImage: b111645ab901f8e59fc68fbe31f5731bdbeef087
React-RCTLinking: 3d719727b4c098aad3588aa3559361ee0579f5de
React-RCTNetwork: b44d3580be05d74556ba4efbf53570f17e38f734
React-RCTSettings: c0c54b330442c29874cd4dae6e94190dc11a6f6f
React-RCTText: 9b9f5589d9b649d7246c3f336e116496df28cfe6
React-RCTVibration: 691c67f3beaf1d084ceed5eb5c1dddd9afa8591e
React-rncore: 1e9276a106e066c3392c7210875272757969469a
React-runtimeexecutor: d465ba0c47ef3ed8281143f59605cacc2244d5c7
React-runtimescheduler: cbd78e16328bde1e5abac4ceb0cb635d03c359c6
React-utils: b79f2411931f9d3ea5781404dcbb2fa8a837e13a
ReactCommon: 2635a013764a291989765d6ec136513911f478c6
ReactNativeHost: 5caf8c9381f26c453fabbe8c3b87f6a013a3c459
ReactTestApp-DevSupport: 3be52e25664a1b4e722e46a59d57433274e9e7aa
ReactTestApp-MSAL: 5de53ba5448bad270cc9cd6a223a2296ea3efd62
RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74
RCTTypeSafety: e9c6c409fca2cc584e5b086862d562540cb38d29
React: 769f469909b18edfe934f0539fffb319c4c61043
React-callinvoker: e48ce12c83706401251921896576710d81e54763
React-Codegen: 658f30a9ed3a87c53f19cce1c2f0ff09f9831aab
React-Core: 8f6b8b114bf59d10d084e5b46414760cc9bfac9e
React-CoreModules: d226b22d06ea1bc4e49d3c073b2c6cbb42265405
React-cxxreact: 3a3b543136233b9b92f26267d3127fc39a0a720a
React-debug: 238501490155574ae9f3f8dd1c74330eba30133e
React-jsc: f7d32213d6f7bb8a9f0c4e0e0a0fe2bb10288173
React-jsi: 494e5ae5cd0c649dde893f80e248cf36989dd331
React-jsiexecutor: faca9c368233f59ed24601aca0185870466a96e9
React-jsinspector: 194e32c6aab382d88713ad3dd0025c5f5c4ee072
React-logger: cebf22b6cf43434e471dc561e5911b40ac01d289
React-NativeModulesApple: 63505fb94b71e2469cab35bdaf36cca813cb5bfd
React-perflogger: e3596db7e753f51766bceadc061936ef1472edc3
React-RCTActionSheet: 17ab132c748b4471012abbcdcf5befe860660485
React-RCTAnimation: c8bbaab62be5817d2a31c36d5f2571e3f7dcf099
React-RCTAppDelegate: 600e7dfd1ca0a80e24af2d4d25ed1c705bb12505
React-RCTBlob: 86ab788db3fcc1af0d186a6625e7d0956ffeea5b
React-RCTImage: 670a3486b532292649b1aef3ffddd0b495a5cee4
React-RCTLinking: bd7ab853144aed463903237e615fd91d11b4f659
React-RCTNetwork: be86a621f3e4724758f23ad1fdce32474ab3d829
React-RCTSettings: 4f3a29a6d23ffa639db9701bc29af43f30781058
React-RCTText: adde32164a243103aaba0b1dc7b0a2599733873e
React-RCTVibration: 6bd85328388ac2e82ae0ca11afe48ad5555b483a
React-rncore: a5a5f2dd1b4fddf27280ae2f7ee5263fe4413037
React-runtimeexecutor: 57d85d942862b08f6d15441a0badff2542fd233c
React-runtimescheduler: 13b0c5e9354ccfc3dc9a391231e55debeb688523
React-utils: fa59c9a3375fb6f4aeb66714fd3f7f76b43a9f16
ReactCommon: 5f73972d2abd8a85e44f27317bf77418a74d3340
ReactNativeHost: 3cc863b178e289d813b92816b149a3acde276d6e
ReactTestApp-DevSupport: 01a9fefc8c7d3a4e5ad989da733a0c044c9d1141
ReactTestApp-MSAL: 9d917ca1097f71e53e845466df0e40c6d5b6259a
ReactTestApp-Resources: 4b819f4d440477a0470146af1cd05299f19b33f8
RNXAuth: a249af0cf1c935a41c95aaf8e5c7df11836bbfbf
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981
Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603
PODFILE CHECKSUM: df600ab6f7e85a7573cb1b256a65b13294140cbd
PODFILE CHECKSUM: dd29237d4e768f3b9fb1e70a6e7a5974125f94c6
COCOAPODS: 1.12.1
COCOAPODS: 1.14.2

Просмотреть файл

@ -1,6 +1,6 @@
platform :macos, '11.0'
require_relative '../../../node_modules/react-native-test-app/macos/test_app'
require_relative '../node_modules/react-native-test-app/macos/test_app'
workspace 'SampleCrossApp.xcworkspace'

Просмотреть файл

@ -1,14 +1,14 @@
PODS:
- boost (1.76.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.72.0)
- FBReactNativeSpec (0.72.0):
- FBLazyVector (0.72.7)
- FBReactNativeSpec (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTRequired (= 0.72.0)
- RCTTypeSafety (= 0.72.0)
- React-Core (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- RCTRequired (= 0.72.7)
- RCTTypeSafety (= 0.72.7)
- React-Core (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- fmt (6.2.1)
- glog (0.3.5)
- MSAL (1.2.14):
@ -25,26 +25,26 @@ PODS:
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- RCTRequired (0.72.0)
- RCTTypeSafety (0.72.0):
- FBLazyVector (= 0.72.0)
- RCTRequired (= 0.72.0)
- React-Core (= 0.72.0)
- React (0.72.0):
- React-Core (= 0.72.0)
- React-Core/DevSupport (= 0.72.0)
- React-Core/RCTWebSocket (= 0.72.0)
- React-RCTActionSheet (= 0.72.0)
- React-RCTAnimation (= 0.72.0)
- React-RCTBlob (= 0.72.0)
- React-RCTImage (= 0.72.0)
- React-RCTLinking (= 0.72.0)
- React-RCTNetwork (= 0.72.0)
- React-RCTSettings (= 0.72.0)
- React-RCTText (= 0.72.0)
- React-RCTVibration (= 0.72.0)
- React-callinvoker (0.72.0)
- React-Codegen (0.72.0):
- RCTRequired (0.72.7)
- RCTTypeSafety (0.72.7):
- FBLazyVector (= 0.72.7)
- RCTRequired (= 0.72.7)
- React-Core (= 0.72.7)
- React (0.72.7):
- React-Core (= 0.72.7)
- React-Core/DevSupport (= 0.72.7)
- React-Core/RCTWebSocket (= 0.72.7)
- React-RCTActionSheet (= 0.72.7)
- React-RCTAnimation (= 0.72.7)
- React-RCTBlob (= 0.72.7)
- React-RCTImage (= 0.72.7)
- React-RCTLinking (= 0.72.7)
- React-RCTNetwork (= 0.72.7)
- React-RCTSettings (= 0.72.7)
- React-RCTText (= 0.72.7)
- React-RCTVibration (= 0.72.7)
- React-callinvoker (0.72.7)
- React-Codegen (0.72.7):
- DoubleConversion
- FBReactNativeSpec
- glog
@ -59,10 +59,10 @@ PODS:
- React-rncore
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- React-Core (0.72.0):
- React-Core (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.0)
- React-Core/Default (= 0.72.7)
- React-cxxreact
- React-jsc
- React-jsi
@ -72,7 +72,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/CoreModulesHeaders (0.72.0):
- React-Core/CoreModulesHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -85,7 +85,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/Default (0.72.0):
- React-Core/Default (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-cxxreact
@ -97,22 +97,22 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/DevSupport (0.72.0):
- React-Core/DevSupport (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.0)
- React-Core/RCTWebSocket (= 0.72.0)
- React-Core/Default (= 0.72.7)
- React-Core/RCTWebSocket (= 0.72.7)
- React-cxxreact
- React-jsc
- React-jsi
- React-jsiexecutor
- React-jsinspector (= 0.72.0)
- React-jsinspector (= 0.72.7)
- React-perflogger
- React-runtimeexecutor
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTActionSheetHeaders (0.72.0):
- React-Core/RCTActionSheetHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -125,7 +125,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTAnimationHeaders (0.72.0):
- React-Core/RCTAnimationHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -138,7 +138,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTBlobHeaders (0.72.0):
- React-Core/RCTBlobHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -151,7 +151,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTImageHeaders (0.72.0):
- React-Core/RCTImageHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -164,7 +164,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTLinkingHeaders (0.72.0):
- React-Core/RCTLinkingHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -177,7 +177,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTNetworkHeaders (0.72.0):
- React-Core/RCTNetworkHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -190,7 +190,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTSettingsHeaders (0.72.0):
- React-Core/RCTSettingsHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -203,7 +203,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTTextHeaders (0.72.0):
- React-Core/RCTTextHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -216,7 +216,7 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTVibrationHeaders (0.72.0):
- React-Core/RCTVibrationHeaders (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default
@ -229,10 +229,10 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-Core/RCTWebSocket (0.72.0):
- React-Core/RCTWebSocket (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-Core/Default (= 0.72.0)
- React-Core/Default (= 0.72.7)
- React-cxxreact
- React-jsc
- React-jsi
@ -242,50 +242,50 @@ PODS:
- React-utils
- SocketRocket (= 0.7.0)
- Yoga
- React-CoreModules (0.72.0):
- React-CoreModules (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.0)
- React-Codegen (= 0.72.0)
- React-Core/CoreModulesHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- RCTTypeSafety (= 0.72.7)
- React-Codegen (= 0.72.7)
- React-Core/CoreModulesHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- React-RCTBlob
- React-RCTImage (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTImage (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- SocketRocket (= 0.7.0)
- React-cxxreact (0.72.0):
- React-cxxreact (0.72.7):
- boost (= 1.76.0)
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.0)
- React-debug (= 0.72.0)
- React-jsi (= 0.72.0)
- React-jsinspector (= 0.72.0)
- React-logger (= 0.72.0)
- React-perflogger (= 0.72.0)
- React-runtimeexecutor (= 0.72.0)
- React-debug (0.72.0)
- React-jsc (0.72.0):
- React-jsc/Fabric (= 0.72.0)
- React-jsi (= 0.72.0)
- React-jsc/Fabric (0.72.0):
- React-jsi (= 0.72.0)
- React-jsi (0.72.0):
- React-callinvoker (= 0.72.7)
- React-debug (= 0.72.7)
- React-jsi (= 0.72.7)
- React-jsinspector (= 0.72.7)
- React-logger (= 0.72.7)
- React-perflogger (= 0.72.7)
- React-runtimeexecutor (= 0.72.7)
- React-debug (0.72.7)
- React-jsc (0.72.7):
- React-jsc/Fabric (= 0.72.7)
- React-jsi (= 0.72.7)
- React-jsc/Fabric (0.72.7):
- React-jsi (= 0.72.7)
- React-jsi (0.72.7):
- boost (= 1.76.0)
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-jsiexecutor (0.72.0):
- React-jsiexecutor (0.72.7):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-cxxreact (= 0.72.0)
- React-jsi (= 0.72.0)
- React-perflogger (= 0.72.0)
- React-jsinspector (0.72.0)
- React-logger (0.72.0):
- React-cxxreact (= 0.72.7)
- React-jsi (= 0.72.7)
- React-perflogger (= 0.72.7)
- React-jsinspector (0.72.7)
- React-logger (0.72.7):
- glog
- React-NativeModulesApple (0.72.0):
- React-NativeModulesApple (0.72.7):
- React-callinvoker
- React-Core
- React-cxxreact
@ -293,17 +293,17 @@ PODS:
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- React-perflogger (0.72.0)
- React-RCTActionSheet (0.72.0):
- React-Core/RCTActionSheetHeaders (= 0.72.0)
- React-RCTAnimation (0.72.0):
- React-perflogger (0.72.7)
- React-RCTActionSheet (0.72.7):
- React-Core/RCTActionSheetHeaders (= 0.72.7)
- React-RCTAnimation (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.0)
- React-Codegen (= 0.72.0)
- React-Core/RCTAnimationHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTAppDelegate (0.72.0):
- RCTTypeSafety (= 0.72.7)
- React-Codegen (= 0.72.7)
- React-Core/RCTAnimationHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTAppDelegate (0.72.7):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
@ -315,91 +315,90 @@ PODS:
- React-RCTNetwork
- React-runtimescheduler
- ReactCommon/turbomodule/core
- React-RCTBlob (0.72.0):
- React-RCTBlob (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- React-Codegen (= 0.72.0)
- React-Core/RCTBlobHeaders (= 0.72.0)
- React-Core/RCTWebSocket (= 0.72.0)
- React-jsi (= 0.72.0)
- React-RCTNetwork (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTImage (0.72.0):
- React-Codegen (= 0.72.7)
- React-Core/RCTBlobHeaders (= 0.72.7)
- React-Core/RCTWebSocket (= 0.72.7)
- React-jsi (= 0.72.7)
- React-RCTNetwork (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTImage (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.0)
- React-Codegen (= 0.72.0)
- React-Core/RCTImageHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- React-RCTNetwork (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTLinking (0.72.0):
- React-Codegen (= 0.72.0)
- React-Core/RCTLinkingHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTNetwork (0.72.0):
- RCTTypeSafety (= 0.72.7)
- React-Codegen (= 0.72.7)
- React-Core/RCTImageHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- React-RCTNetwork (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTLinking (0.72.7):
- React-Codegen (= 0.72.7)
- React-Core/RCTLinkingHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTNetwork (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.0)
- React-Codegen (= 0.72.0)
- React-Core/RCTNetworkHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTSettings (0.72.0):
- RCTTypeSafety (= 0.72.7)
- React-Codegen (= 0.72.7)
- React-Core/RCTNetworkHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTSettings (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- RCTTypeSafety (= 0.72.0)
- React-Codegen (= 0.72.0)
- React-Core/RCTSettingsHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-RCTText (0.72.0):
- React-Core/RCTTextHeaders (= 0.72.0)
- React-RCTVibration (0.72.0):
- RCTTypeSafety (= 0.72.7)
- React-Codegen (= 0.72.7)
- React-Core/RCTSettingsHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-RCTText (0.72.7):
- React-Core/RCTTextHeaders (= 0.72.7)
- React-RCTVibration (0.72.7):
- RCT-Folly (= 2021.07.22.00)
- React-Codegen (= 0.72.0)
- React-Core/RCTVibrationHeaders (= 0.72.0)
- React-jsi (= 0.72.0)
- ReactCommon/turbomodule/core (= 0.72.0)
- React-rncore (0.72.0)
- React-runtimeexecutor (0.72.0):
- React-jsi (= 0.72.0)
- React-runtimescheduler (0.72.0):
- React-Codegen (= 0.72.7)
- React-Core/RCTVibrationHeaders (= 0.72.7)
- React-jsi (= 0.72.7)
- ReactCommon/turbomodule/core (= 0.72.7)
- React-rncore (0.72.7)
- React-runtimeexecutor (0.72.7):
- React-jsi (= 0.72.7)
- React-runtimescheduler (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker
- React-debug
- React-jsi
- React-runtimeexecutor
- React-utils (0.72.0):
- React-utils (0.72.7):
- glog
- RCT-Folly (= 2021.07.22.00)
- React-debug
- ReactCommon/turbomodule/bridging (0.72.0):
- ReactCommon/turbomodule/bridging (0.72.7):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.0)
- React-cxxreact (= 0.72.0)
- React-jsi (= 0.72.0)
- React-logger (= 0.72.0)
- React-perflogger (= 0.72.0)
- ReactCommon/turbomodule/core (0.72.0):
- React-callinvoker (= 0.72.7)
- React-cxxreact (= 0.72.7)
- React-jsi (= 0.72.7)
- React-logger (= 0.72.7)
- React-perflogger (= 0.72.7)
- ReactCommon/turbomodule/core (0.72.7):
- DoubleConversion
- glog
- RCT-Folly (= 2021.07.22.00)
- React-callinvoker (= 0.72.0)
- React-cxxreact (= 0.72.0)
- React-jsi (= 0.72.0)
- React-logger (= 0.72.0)
- React-perflogger (= 0.72.0)
- ReactNativeHost (0.2.8):
- React-callinvoker (= 0.72.7)
- React-cxxreact (= 0.72.7)
- React-jsi (= 0.72.7)
- React-logger (= 0.72.7)
- React-perflogger (= 0.72.7)
- ReactNativeHost (0.2.9):
- React-Core
- React-cxxreact
- ReactCommon/turbomodule/core
- ReactTestApp-DevSupport (2.5.20):
- ReactTestApp-DevSupport (2.5.28):
- React-Core
- React-jsi
- ReactTestApp-MSAL (2.1.6):
- ReactTestApp-MSAL (2.1.7):
- MSAL
- RNXAuth
- ReactTestApp-Resources (1.0.0-dev)
- RNXAuth (0.2.4):
- React-Core
@ -407,51 +406,51 @@ PODS:
- Yoga (1.14.0)
DEPENDENCIES:
- boost (from `../../../node_modules/react-native-macos/third-party-podspecs/boost.podspec`)
- DoubleConversion (from `../../../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec`)
- FBLazyVector (from `../../../node_modules/react-native-macos/Libraries/FBLazyVector`)
- FBReactNativeSpec (from `../../../node_modules/react-native-macos/React/FBReactNativeSpec`)
- glog (from `../../../node_modules/react-native-macos/third-party-podspecs/glog.podspec`)
- boost (from `../node_modules/react-native-macos/third-party-podspecs/boost.podspec`)
- DoubleConversion (from `../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec`)
- FBLazyVector (from `../node_modules/react-native-macos/Libraries/FBLazyVector`)
- FBReactNativeSpec (from `../node_modules/react-native-macos/React/FBReactNativeSpec`)
- glog (from `../node_modules/react-native-macos/third-party-podspecs/glog.podspec`)
- MSAL
- RCT-Folly (from `../../../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../../../node_modules/react-native-macos/Libraries/RCTRequired`)
- RCTTypeSafety (from `../../../node_modules/react-native-macos/Libraries/TypeSafety`)
- React (from `../../../node_modules/react-native-macos/`)
- React-callinvoker (from `../../../node_modules/react-native-macos/ReactCommon/callinvoker`)
- RCT-Folly (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../node_modules/react-native-macos/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native-macos/Libraries/TypeSafety`)
- React (from `../node_modules/react-native-macos/`)
- React-callinvoker (from `../node_modules/react-native-macos/ReactCommon/callinvoker`)
- React-Codegen (from `build/generated/ios`)
- React-Core (from `../../../node_modules/react-native-macos/`)
- React-Core/RCTWebSocket (from `../../../node_modules/react-native-macos/`)
- React-CoreModules (from `../../../node_modules/react-native-macos/React/CoreModules`)
- React-cxxreact (from `../../../node_modules/react-native-macos/ReactCommon/cxxreact`)
- React-debug (from `../../../node_modules/react-native-macos/ReactCommon/react/debug`)
- React-jsc (from `../../../node_modules/react-native-macos/ReactCommon/jsc`)
- React-jsi (from `../../../node_modules/react-native-macos/ReactCommon/jsi`)
- React-jsiexecutor (from `../../../node_modules/react-native-macos/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../../../node_modules/react-native-macos/ReactCommon/jsinspector`)
- React-logger (from `../../../node_modules/react-native-macos/ReactCommon/logger`)
- React-NativeModulesApple (from `../../../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../../../node_modules/react-native-macos/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../../../node_modules/react-native-macos/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../../../node_modules/react-native-macos/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../../../node_modules/react-native-macos/Libraries/AppDelegate`)
- React-RCTBlob (from `../../../node_modules/react-native-macos/Libraries/Blob`)
- React-RCTImage (from `../../../node_modules/react-native-macos/Libraries/Image`)
- React-RCTLinking (from `../../../node_modules/react-native-macos/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../../../node_modules/react-native-macos/Libraries/Network`)
- React-RCTSettings (from `../../../node_modules/react-native-macos/Libraries/Settings`)
- React-RCTText (from `../../../node_modules/react-native-macos/Libraries/Text`)
- React-RCTVibration (from `../../../node_modules/react-native-macos/Libraries/Vibration`)
- React-rncore (from `../../../node_modules/react-native-macos/ReactCommon`)
- React-runtimeexecutor (from `../../../node_modules/react-native-macos/ReactCommon/runtimeexecutor`)
- React-runtimescheduler (from `../../../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`)
- React-utils (from `../../../node_modules/react-native-macos/ReactCommon/react/utils`)
- ReactCommon/turbomodule/core (from `../../../node_modules/react-native-macos/ReactCommon`)
- "ReactNativeHost (from `../../../node_modules/@rnx-kit/react-native-host`)"
- ReactTestApp-DevSupport (from `../../../node_modules/react-native-test-app`)
- "ReactTestApp-MSAL (from `../../../node_modules/@rnx-kit/react-native-test-app-msal`)"
- React-Core (from `../node_modules/react-native-macos/`)
- React-Core/RCTWebSocket (from `../node_modules/react-native-macos/`)
- React-CoreModules (from `../node_modules/react-native-macos/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native-macos/ReactCommon/cxxreact`)
- React-debug (from `../node_modules/react-native-macos/ReactCommon/react/debug`)
- React-jsc (from `../node_modules/react-native-macos/ReactCommon/jsc`)
- React-jsi (from `../node_modules/react-native-macos/ReactCommon/jsi`)
- React-jsiexecutor (from `../node_modules/react-native-macos/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native-macos/ReactCommon/jsinspector`)
- React-logger (from `../node_modules/react-native-macos/ReactCommon/logger`)
- React-NativeModulesApple (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native-macos/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native-macos/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native-macos/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native-macos/Libraries/AppDelegate`)
- React-RCTBlob (from `../node_modules/react-native-macos/Libraries/Blob`)
- React-RCTImage (from `../node_modules/react-native-macos/Libraries/Image`)
- React-RCTLinking (from `../node_modules/react-native-macos/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../node_modules/react-native-macos/Libraries/Network`)
- React-RCTSettings (from `../node_modules/react-native-macos/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native-macos/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native-macos/Libraries/Vibration`)
- React-rncore (from `../node_modules/react-native-macos/ReactCommon`)
- React-runtimeexecutor (from `../node_modules/react-native-macos/ReactCommon/runtimeexecutor`)
- React-runtimescheduler (from `../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`)
- React-utils (from `../node_modules/react-native-macos/ReactCommon/react/utils`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native-macos/ReactCommon`)
- "ReactNativeHost (from `../../../node_modules/.store/react-native-test-app-virtual-1689c0a85d/node_modules/react-native-test-app/node_modules/@rnx-kit/react-native-host`)"
- ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`)
- "ReactTestApp-MSAL (from `../node_modules/@rnx-kit/react-native-test-app-msal`)"
- ReactTestApp-Resources (from `..`)
- "RNXAuth (from `../../../node_modules/@rnx-kit/react-native-auth`)"
- Yoga (from `../../../node_modules/react-native-macos/ReactCommon/yoga`)
- "RNXAuth (from `../node_modules/@rnx-kit/react-native-auth`)"
- Yoga (from `../node_modules/react-native-macos/ReactCommon/yoga`)
SPEC REPOS:
trunk:
@ -461,140 +460,140 @@ SPEC REPOS:
EXTERNAL SOURCES:
boost:
:podspec: "../../../node_modules/react-native-macos/third-party-podspecs/boost.podspec"
:podspec: "../node_modules/react-native-macos/third-party-podspecs/boost.podspec"
DoubleConversion:
:podspec: "../../../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec"
:podspec: "../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec"
FBLazyVector:
:path: "../../../node_modules/react-native-macos/Libraries/FBLazyVector"
:path: "../node_modules/react-native-macos/Libraries/FBLazyVector"
FBReactNativeSpec:
:path: "../../../node_modules/react-native-macos/React/FBReactNativeSpec"
:path: "../node_modules/react-native-macos/React/FBReactNativeSpec"
glog:
:podspec: "../../../node_modules/react-native-macos/third-party-podspecs/glog.podspec"
:podspec: "../node_modules/react-native-macos/third-party-podspecs/glog.podspec"
RCT-Folly:
:podspec: "../../../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec"
:podspec: "../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec"
RCTRequired:
:path: "../../../node_modules/react-native-macos/Libraries/RCTRequired"
:path: "../node_modules/react-native-macos/Libraries/RCTRequired"
RCTTypeSafety:
:path: "../../../node_modules/react-native-macos/Libraries/TypeSafety"
:path: "../node_modules/react-native-macos/Libraries/TypeSafety"
React:
:path: "../../../node_modules/react-native-macos/"
:path: "../node_modules/react-native-macos/"
React-callinvoker:
:path: "../../../node_modules/react-native-macos/ReactCommon/callinvoker"
:path: "../node_modules/react-native-macos/ReactCommon/callinvoker"
React-Codegen:
:path: build/generated/ios
React-Core:
:path: "../../../node_modules/react-native-macos/"
:path: "../node_modules/react-native-macos/"
React-CoreModules:
:path: "../../../node_modules/react-native-macos/React/CoreModules"
:path: "../node_modules/react-native-macos/React/CoreModules"
React-cxxreact:
:path: "../../../node_modules/react-native-macos/ReactCommon/cxxreact"
:path: "../node_modules/react-native-macos/ReactCommon/cxxreact"
React-debug:
:path: "../../../node_modules/react-native-macos/ReactCommon/react/debug"
:path: "../node_modules/react-native-macos/ReactCommon/react/debug"
React-jsc:
:path: "../../../node_modules/react-native-macos/ReactCommon/jsc"
:path: "../node_modules/react-native-macos/ReactCommon/jsc"
React-jsi:
:path: "../../../node_modules/react-native-macos/ReactCommon/jsi"
:path: "../node_modules/react-native-macos/ReactCommon/jsi"
React-jsiexecutor:
:path: "../../../node_modules/react-native-macos/ReactCommon/jsiexecutor"
:path: "../node_modules/react-native-macos/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../../../node_modules/react-native-macos/ReactCommon/jsinspector"
:path: "../node_modules/react-native-macos/ReactCommon/jsinspector"
React-logger:
:path: "../../../node_modules/react-native-macos/ReactCommon/logger"
:path: "../node_modules/react-native-macos/ReactCommon/logger"
React-NativeModulesApple:
:path: "../../../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios"
:path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
:path: "../../../node_modules/react-native-macos/ReactCommon/reactperflogger"
:path: "../node_modules/react-native-macos/ReactCommon/reactperflogger"
React-RCTActionSheet:
:path: "../../../node_modules/react-native-macos/Libraries/ActionSheetIOS"
:path: "../node_modules/react-native-macos/Libraries/ActionSheetIOS"
React-RCTAnimation:
:path: "../../../node_modules/react-native-macos/Libraries/NativeAnimation"
:path: "../node_modules/react-native-macos/Libraries/NativeAnimation"
React-RCTAppDelegate:
:path: "../../../node_modules/react-native-macos/Libraries/AppDelegate"
:path: "../node_modules/react-native-macos/Libraries/AppDelegate"
React-RCTBlob:
:path: "../../../node_modules/react-native-macos/Libraries/Blob"
:path: "../node_modules/react-native-macos/Libraries/Blob"
React-RCTImage:
:path: "../../../node_modules/react-native-macos/Libraries/Image"
:path: "../node_modules/react-native-macos/Libraries/Image"
React-RCTLinking:
:path: "../../../node_modules/react-native-macos/Libraries/LinkingIOS"
:path: "../node_modules/react-native-macos/Libraries/LinkingIOS"
React-RCTNetwork:
:path: "../../../node_modules/react-native-macos/Libraries/Network"
:path: "../node_modules/react-native-macos/Libraries/Network"
React-RCTSettings:
:path: "../../../node_modules/react-native-macos/Libraries/Settings"
:path: "../node_modules/react-native-macos/Libraries/Settings"
React-RCTText:
:path: "../../../node_modules/react-native-macos/Libraries/Text"
:path: "../node_modules/react-native-macos/Libraries/Text"
React-RCTVibration:
:path: "../../../node_modules/react-native-macos/Libraries/Vibration"
:path: "../node_modules/react-native-macos/Libraries/Vibration"
React-rncore:
:path: "../../../node_modules/react-native-macos/ReactCommon"
:path: "../node_modules/react-native-macos/ReactCommon"
React-runtimeexecutor:
:path: "../../../node_modules/react-native-macos/ReactCommon/runtimeexecutor"
:path: "../node_modules/react-native-macos/ReactCommon/runtimeexecutor"
React-runtimescheduler:
:path: "../../../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler"
:path: "../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler"
React-utils:
:path: "../../../node_modules/react-native-macos/ReactCommon/react/utils"
:path: "../node_modules/react-native-macos/ReactCommon/react/utils"
ReactCommon:
:path: "../../../node_modules/react-native-macos/ReactCommon"
:path: "../node_modules/react-native-macos/ReactCommon"
ReactNativeHost:
:path: "../../../node_modules/@rnx-kit/react-native-host"
:path: "../../../node_modules/.store/react-native-test-app-virtual-1689c0a85d/node_modules/react-native-test-app/node_modules/@rnx-kit/react-native-host"
ReactTestApp-DevSupport:
:path: "../../../node_modules/react-native-test-app"
:path: "../node_modules/react-native-test-app"
ReactTestApp-MSAL:
:path: "../../../node_modules/@rnx-kit/react-native-test-app-msal"
:path: "../node_modules/@rnx-kit/react-native-test-app-msal"
ReactTestApp-Resources:
:path: ".."
RNXAuth:
:path: "../../../node_modules/@rnx-kit/react-native-auth"
:path: "../node_modules/@rnx-kit/react-native-auth"
Yoga:
:path: "../../../node_modules/react-native-macos/ReactCommon/yoga"
:path: "../node_modules/react-native-macos/ReactCommon/yoga"
SPEC CHECKSUMS:
boost: 8fa3cd00fa17ef6c3221e5fd283fa93e81d23017
DoubleConversion: acaf5db79676d2e9119015819153f0f99191de12
FBLazyVector: 459e20c0cb110e93182928cea84f20e5ace0c7ec
FBReactNativeSpec: 2b9d8ffb81b4ac1d464cc8414734455c81a16de3
FBLazyVector: a1c669e93ee4a0ae609435b08ecdddc6c972a6c3
FBReactNativeSpec: a7b10d1a6f5d9623086736d721069edecf1fab9a
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 6df0a3d6e2750a50609471fd1a01fd2948d405b5
MSAL: 28bf71392a30e778d796f1cd7c2d1b45517e749d
RCT-Folly: bf7b4921a91932051ebf1c5c2d297154b1fa3c8c
RCTRequired: 8fc0215acc2585f6f90ef6a78bb4442436232bb2
RCTTypeSafety: 7b4245612336a0565006684af26f29e60afbdc4f
React: ff49f5b40927240eccc76741ea34d5c53b4aa5fb
React-callinvoker: 79b8801cdec37fda815704f8fadb3beae1cd384c
React-Codegen: 34c5ace50997109d5d15218d9de4a41d5cd9e426
React-Core: a88c473b779b0b50d124ce627c1986435ff532fa
React-CoreModules: 7d9921936a6560a00e421d284bf764c4cd12f614
React-cxxreact: 83086291b9c72ee66c52eb3cb248cadd408da17f
React-debug: cb82ea5defe8f14c9aa731d172bd687505af08be
React-jsc: 7cdebb1ec957424185cba031bb07d84a0b1358b9
React-jsi: 2de566f3093909c20aff79519d36f0f9866aba21
React-jsiexecutor: 24379ec8a128cc36dc8037b7dc9365dd98f85c52
React-jsinspector: 4695b4642ae4c3ee69e1d46a674f9f5e8df4c1c4
React-logger: cfdb2158a419643487e5268a0ad8d512b2448ca0
React-NativeModulesApple: 5c063982eb06f8562da8fd54223d442ae9e687bd
React-perflogger: 080f08a7cd4130446e84889951e3403adde532e4
React-RCTActionSheet: 49b11a8033864b6f8a39aa17ed1ff2fdc2b57c74
React-RCTAnimation: 0a9eabfb74d22e477f2e14246d5049d2618ca9e7
React-RCTAppDelegate: b00ae88ac233bd9ef1f75754286b725d1d304dbe
React-RCTBlob: 52d83f85d53375f03154b9ca6fac906dcae7210e
React-RCTImage: d2a245029ea3b3e4e1cda1b6f07f574fc75170be
React-RCTLinking: 5e284881bfff998c5af74d3a80b3f5aad21ea6b4
React-RCTNetwork: ad2979739b3a8f3c145a9194b1dc7a1e7051dd3d
React-RCTSettings: e70ae331a1f79f8b9df71355a40c1ba73acf1423
React-RCTText: 7203aff1d849079d01f6e2d3b1d9411f9ad20949
React-RCTVibration: 0989e472c2140109a31a102a76afe2505583c882
React-rncore: 299c1be68cc9aa2f47f4330354566117005a8fec
React-runtimeexecutor: 6a8edcf72846a81125818548b846e8008eefb717
React-runtimescheduler: 7ef3da59bf7944f849ec6fd847aef68e27c0d584
React-utils: 1190a06879c06a3fb5b132823c6e7ecebbae1409
ReactCommon: 91b407ef7fc6498bf7c82aa9450c8f13d6b532d7
ReactNativeHost: 5caf8c9381f26c453fabbe8c3b87f6a013a3c459
ReactTestApp-DevSupport: 3be52e25664a1b4e722e46a59d57433274e9e7aa
ReactTestApp-MSAL: 5de53ba5448bad270cc9cd6a223a2296ea3efd62
RCTRequired: 068b6953d94545105342ae519d194a2a556cc93e
RCTTypeSafety: ddd5a095f035fd71a3ce304818453564e78b5477
React: 437cf61741178cbc2b70f46ae3dfe4661c1bd6e5
React-callinvoker: 33ecec664abaeee64ea52c9ad01eafdd77dbf2ad
React-Codegen: 667fa2b4946942bc8ccb887533723ab5c4ae32c3
React-Core: c24112047766addbf2ff520af3f48b0bf226ebef
React-CoreModules: 7c2b8670db47a5f700810a125186b8d957eb9777
React-cxxreact: 1b71364f03a1c24c289997153d48f0130c2c78bf
React-debug: bfd4d5df87bc4519362270fcecbafefc7bcd6094
React-jsc: e72de3e9929145a3f16ba27f803cc71662978bae
React-jsi: 2001049c82fb33da1f6d3e08ff4ca2695f2800c4
React-jsiexecutor: f046683ad2270dcc5df059dc8355d9c20cc50bfc
React-jsinspector: 12a40384db51b433efbafcbbe98cad04e64df434
React-logger: b37a8201936fa2b3553ebe53def35d712d43a429
React-NativeModulesApple: c684abfc84ca243c403a55cead2c26ee47bdde77
React-perflogger: 71c2053099e7d472446a18ea2b9dabbf0ed58927
React-RCTActionSheet: 634a969392217c41c9dc0f4e0ec5d51c64c48cb2
React-RCTAnimation: 584fc023f29ebc8f5c86f9a55a188636c8310aee
React-RCTAppDelegate: 5d1bad848cdb1e665261e2acfbb6dd5aa3d94a30
React-RCTBlob: c45a9878add2a6e549d7378fd609765c7cacf843
React-RCTImage: e7b471c47bb92f41e9eb59642fc202fa4266165a
React-RCTLinking: b9a7ebbb3b8000eff124d7e135e3bd463e4a041c
React-RCTNetwork: 8910088b890ab8e4f6247631bcfb580bd3ab2791
React-RCTSettings: 418cdc87af4fb00e1071251ee750545afb3382c0
React-RCTText: 7b7f2c297f50018b738d80e42f7fcdb150b998e3
React-RCTVibration: 4129e8e1907a3158860f01dd5c460ed8d40e27f5
React-rncore: 2ea63d8719133c03768d797e3cac59310f4e77da
React-runtimeexecutor: 813d68a1060a65386e04f5c86bee3c7bab448039
React-runtimescheduler: 771ec5d7d87f2ab12018fa03ef3dbfe324039332
React-utils: 1737869e751b73c81d9380fb00735a50c941a97b
ReactCommon: 9dfe5ae9b932d46ad8a47f27fae73307b94c7130
ReactNativeHost: 3cc863b178e289d813b92816b149a3acde276d6e
ReactTestApp-DevSupport: 01a9fefc8c7d3a4e5ad989da733a0c044c9d1141
ReactTestApp-MSAL: 9d917ca1097f71e53e845466df0e40c6d5b6259a
ReactTestApp-Resources: bb546b3a5dca4b7931bee423d4ef28cd94b346cf
RNXAuth: a249af0cf1c935a41c95aaf8e5c7df11836bbfbf
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
Yoga: 29d7e1aad4c25def4778ec71c5dab1936fb4190d
Yoga: df33cd6b7928005dd2b18d9b0a9ccf962e806ce7
PODFILE CHECKSUM: 30b8aa30eb4eedd7c154dfbbfae609c9f071443d
PODFILE CHECKSUM: d809b166b8503bc659d225bc87f679177f48eca4
COCOAPODS: 1.12.1
COCOAPODS: 1.14.2

Просмотреть файл

@ -1,7 +1,8 @@
#!/usr/bin/env node
import { cli } from "@rnx-kit/align-deps";
import * as path from "node:path";
import { fileURLToPath } from "node:url";
// Import the bundle directly to avoid circular dependency
import { cli } from "../packages/align-deps/lib/index.js";
cli({
presets: [

138
yarn.lock
Просмотреть файл

@ -3295,9 +3295,9 @@ __metadata:
languageName: node
linkType: hard
"@react-native/codegen@npm:^0.72.6":
version: 0.72.6
resolution: "@react-native/codegen@npm:0.72.6"
"@react-native/codegen@npm:^0.72.6, @react-native/codegen@npm:^0.72.7":
version: 0.72.7
resolution: "@react-native/codegen@npm:0.72.7"
dependencies:
"@babel/parser": ^7.20.0
flow-parser: ^0.206.0
@ -3305,7 +3305,7 @@ __metadata:
nullthrows: ^1.1.1
peerDependencies:
"@babel/preset-env": ^7.1.6
checksum: 56ef32546ac042069bba0ca8ee8cc21cfcb32500b8fcb01917d824ad5a78b0c4da9a336b1391217deb934224ee3f0f9f5590584c1387b94d44861369f2451449
checksum: 7793a9da9eec18a5c68af37ad0e25000ed7f111086223bc85b08e52c79229266d5affc9e6f9cb14348e7921f0d1b96267ff63801d95bc23c55f54b57c0a9c510
languageName: node
linkType: hard
@ -4090,7 +4090,7 @@ __metadata:
languageName: unknown
linkType: soft
"@rnx-kit/react-native-host@^0.2.8, @rnx-kit/react-native-host@workspace:*, @rnx-kit/react-native-host@workspace:packages/react-native-host":
"@rnx-kit/react-native-host@workspace:*, @rnx-kit/react-native-host@workspace:packages/react-native-host":
version: 0.0.0-use.local
resolution: "@rnx-kit/react-native-host@workspace:packages/react-native-host"
dependencies:
@ -12158,17 +12158,17 @@ __metadata:
languageName: node
linkType: hard
"react-native-macos@npm:^0.72.0":
version: 0.72.0
resolution: "react-native-macos@npm:0.72.0"
"react-native-macos@npm:0.72.7":
version: 0.72.7
resolution: "react-native-macos@npm:0.72.7"
dependencies:
"@jest/create-cache-key-function": ^29.2.1
"@react-native-community/cli": 11.3.6
"@react-native-community/cli-platform-android": 11.3.6
"@react-native-community/cli-platform-ios": 11.3.6
"@react-native-community/cli": 11.3.7
"@react-native-community/cli-platform-android": 11.3.7
"@react-native-community/cli-platform-ios": 11.3.7
"@react-native-mac/virtualized-lists": ^0.72.0
"@react-native/assets-registry": ^0.72.0
"@react-native/codegen": ^0.72.6
"@react-native/codegen": ^0.72.7
"@react-native/gradle-plugin": ^0.72.11
"@react-native/js-polyfills": ^0.72.1
"@react-native/normalize-colors": ^0.72.0
@ -12202,7 +12202,55 @@ __metadata:
react: 18.2.0
bin:
react-native-macos: cli.js
checksum: 030b6ad57c78e59e667aef0f6c946e3591156bc44b997bf52c4d86e6120220ce504bc409ef6baff49f2473db47cf74113b560b01ccf46cff4cb4411ca26471f2
checksum: 4e198a11534dfe640e3e11761e063def9f37d90cd8e60e406287f7ddd9d40d1b9e48e437e6baec1b518a51e7143f2d6db9f0d85b22f833e31d3729ba4f73962e
languageName: node
linkType: hard
"react-native-macos@patch:react-native-macos@npm%3A0.72.7#./.yarn/patches/react-native-macos-npm-0.72.7-e19b4d7895.patch::locator=rnx-kit%40workspace%3A.":
version: 0.72.7
resolution: "react-native-macos@patch:react-native-macos@npm%3A0.72.7#./.yarn/patches/react-native-macos-npm-0.72.7-e19b4d7895.patch::version=0.72.7&hash=6adeb9&locator=rnx-kit%40workspace%3A."
dependencies:
"@jest/create-cache-key-function": ^29.2.1
"@react-native-community/cli": 11.3.7
"@react-native-community/cli-platform-android": 11.3.7
"@react-native-community/cli-platform-ios": 11.3.7
"@react-native-mac/virtualized-lists": ^0.72.0
"@react-native/assets-registry": ^0.72.0
"@react-native/codegen": ^0.72.7
"@react-native/gradle-plugin": ^0.72.11
"@react-native/js-polyfills": ^0.72.1
"@react-native/normalize-colors": ^0.72.0
abort-controller: ^3.0.0
anser: ^1.4.9
base64-js: ^1.1.2
deprecated-react-native-prop-types: 4.1.0
event-target-shim: ^5.0.1
flow-enums-runtime: ^0.0.5
invariant: ^2.2.4
jest-environment-node: ^29.2.1
jsc-android: ^250231.0.0
memoize-one: ^5.0.0
metro-runtime: 0.76.8
metro-source-map: 0.76.8
mkdirp: ^0.5.1
nullthrows: ^1.1.1
pretty-format: ^26.5.2
promise: ^8.3.0
react-devtools-core: ^4.27.2
react-refresh: ^0.4.0
react-shallow-renderer: ^16.15.0
regenerator-runtime: ^0.13.2
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: ^0.1.10
use-sync-external-store: ^1.0.0
whatwg-fetch: ^3.0.0
ws: ^6.2.2
yargs: ^17.6.2
peerDependencies:
react: 18.2.0
bin:
react-native-macos: cli.js
checksum: 796e29a9ebeb67355ff423fa078db0978d26c3f9587891d460b2528c85683b9867397fbce9477e256ee81fc9d39a056a349ea8dd15848db3a4958529a145bb48
languageName: node
linkType: hard
@ -12292,16 +12340,16 @@ __metadata:
languageName: node
linkType: hard
"react-native@npm:^0.72.0":
version: 0.72.4
resolution: "react-native@npm:0.72.4"
"react-native@npm:0.72.6":
version: 0.72.6
resolution: "react-native@npm:0.72.6"
dependencies:
"@jest/create-cache-key-function": ^29.2.1
"@react-native-community/cli": 11.3.6
"@react-native-community/cli-platform-android": 11.3.6
"@react-native-community/cli-platform-ios": 11.3.6
"@react-native-community/cli": 11.3.7
"@react-native-community/cli-platform-android": 11.3.7
"@react-native-community/cli-platform-ios": 11.3.7
"@react-native/assets-registry": ^0.72.0
"@react-native/codegen": ^0.72.6
"@react-native/codegen": ^0.72.7
"@react-native/gradle-plugin": ^0.72.11
"@react-native/js-polyfills": ^0.72.1
"@react-native/normalize-colors": ^0.72.0
@ -12336,7 +12384,55 @@ __metadata:
react: 18.2.0
bin:
react-native: cli.js
checksum: c66afb143b5df75bbbd7d88a885ef268cc8957213625f0d6eac1950a4748cd19d56ad4beea1ec0e0aa687e2dd1866df386134b6c96207c950c2203194c81c57b
checksum: 3cf0af092c0d6b9b6e67795664e324136f6d1a41c6a889737fb612e5ddb93d0537c890fe733e751fe3bbc139cbb4f9f6d9eff4467e8d8dc67194ac8b382fa168
languageName: node
linkType: hard
"react-native@patch:react-native@npm%3A0.72.6#./.yarn/patches/react-native-npm-0.72.6-9d6fdd645f.patch::locator=rnx-kit%40workspace%3A.":
version: 0.72.6
resolution: "react-native@patch:react-native@npm%3A0.72.6#./.yarn/patches/react-native-npm-0.72.6-9d6fdd645f.patch::version=0.72.6&hash=6adeb9&locator=rnx-kit%40workspace%3A."
dependencies:
"@jest/create-cache-key-function": ^29.2.1
"@react-native-community/cli": 11.3.7
"@react-native-community/cli-platform-android": 11.3.7
"@react-native-community/cli-platform-ios": 11.3.7
"@react-native/assets-registry": ^0.72.0
"@react-native/codegen": ^0.72.7
"@react-native/gradle-plugin": ^0.72.11
"@react-native/js-polyfills": ^0.72.1
"@react-native/normalize-colors": ^0.72.0
"@react-native/virtualized-lists": ^0.72.8
abort-controller: ^3.0.0
anser: ^1.4.9
base64-js: ^1.1.2
deprecated-react-native-prop-types: 4.1.0
event-target-shim: ^5.0.1
flow-enums-runtime: ^0.0.5
invariant: ^2.2.4
jest-environment-node: ^29.2.1
jsc-android: ^250231.0.0
memoize-one: ^5.0.0
metro-runtime: 0.76.8
metro-source-map: 0.76.8
mkdirp: ^0.5.1
nullthrows: ^1.1.1
pretty-format: ^26.5.2
promise: ^8.3.0
react-devtools-core: ^4.27.2
react-refresh: ^0.4.0
react-shallow-renderer: ^16.15.0
regenerator-runtime: ^0.13.2
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: ^0.1.10
use-sync-external-store: ^1.0.0
whatwg-fetch: ^3.0.0
ws: ^6.2.2
yargs: ^17.6.2
peerDependencies:
react: 18.2.0
bin:
react-native: cli.js
checksum: 97b8eb62e62a6260c3b06b595e5086347d8c1e8786ffcc979986f5d19f00ffda9c3bae03715abd06765273fc4e1e17c81efe3f871ffd43f2c94de432ce0bc6f0
languageName: node
linkType: hard