Fix CI pipelines and bump to RNW 0.73.21 (#293)

This PR is meant to fix the CI for `react-native-xaml` with the minimum
number of changes required to pass, so that new development can
continue.

A side-effect of this change is to bump the version of
`react-native-windows` needed by the example apps from 0.73.4 to
0.73.21.

###### Microsoft Reviewers: [Open in
CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/microsoft/react-native-xaml/pull/293)
This commit is contained in:
Jon Thysell 2024-11-21 14:25:43 -08:00 коммит произвёл GitHub
Родитель 0fdf33a7f0
Коммит 853a1fa9bb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
16 изменённых файлов: 497 добавлений и 348 удалений

4
.github/ISSUE_TEMPLATE/bug-report.yaml поставляемый
Просмотреть файл

@ -32,6 +32,6 @@ body:
attributes:
label: Environment
description: |
Run the command `npx react-native info` in your terminal and copy the results here
value: "npx react-native info"
Run the command `npx @react-native-community/cli info` in your terminal and copy the results here
value: "npx @react-native-community/cli info"
render: markdown

4
.github/policies/resourceManagement.yml поставляемый
Просмотреть файл

@ -240,9 +240,9 @@ configuration:
This issue lacks the environment info requested in the bug template. Please edit your issue report to add this information.
1. `npx react-native --version`:
1. `npx @react-native-community/cli --version`:
2. `npx react-native run-windows --info`:
2. `npx @react-native-community/cli run-windows --info`:
- addLabel:
label: 'Needs: Author Feedback'
- removeLabel:

35
.github/workflows/main.yml поставляемый
Просмотреть файл

@ -30,40 +30,21 @@ jobs:
strategy:
fail-fast: false
matrix:
rnwVersion: [ 'latest', '0.72-stable', '0.71-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.71
rnwVersion: [ 'v0.73-stable', 'v0.72-stable', 'v0.71-stable'] # test *all* versions that use VS 2022. aka any RNW version >= min in package.json and >= 0.71
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: 'latest'
rnTemplate: 'react-native@latest'
- rnwVersion: '0.72-stable'
rnTemplate: 'react-native@0.72-stable'
- rnwVersion: '0.71-stable'
rnTemplate: 'react-native@0.71-stable'
- rnwVersion: 'v0.73-stable'
rnVersion: '0.73-stable'
- rnwVersion: 'v0.72-stable'
rnVersion: '0.72-stable'
- rnwVersion: 'v0.71-stable'
rnVersion: '0.71-stable'
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2022
rnwVersion: ${{ matrix.rnwVersion }}
useRnwNuGet: ${{ matrix.useRnwNuGet }}
rnTemplate: ${{ matrix.rnTemplate }}
call-testcli-old:
name: Test CLI (VS 2019)
strategy:
fail-fast: false
matrix:
rnwVersion: ['0.70-stable', '0.69-stable'] # test *all* versions that use VS 2019. aka any RNW version >= min in package.json and < 0.71
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: '0.70-stable'
rnTemplate: 'react-native-template-typescript@6.12.11'
- rnwVersion: '0.69-stable'
rnTemplate: 'react-native-template-typescript@6.11.9'
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2019
rnwVersion: ${{ matrix.rnwVersion }}
useRnwNuGet: ${{ matrix.useRnwNuGet }}
rnTemplate: ${{ matrix.rnTemplate }}
rnVersion: ${{ matrix.rnVersion }}
call-buildnpmpackage:
name: Build NPM Package

32
.github/workflows/pr.yml поставляемый
Просмотреть файл

@ -42,37 +42,19 @@ jobs:
strategy:
fail-fast: true
matrix:
rnwVersion: ['latest', '0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.71 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
rnwVersion: ['v0.73-stable', 'v0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.71 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: 'latest'
rnTemplate: 'react-native@latest'
- rnwVersion: '0.72-stable'
rnTemplate: 'react-native@0.72-stable'
- rnwVersion: 'v0.73-stable'
rnVersion: '0.73-stable'
- rnwVersion: 'v0.72-stable'
rnVersion: '0.72-stable'
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2022
rnwVersion: ${{ matrix.rnwVersion }}
useRnwNuGet: ${{ matrix.useRnwNuGet }}
rnTemplate: ${{ matrix.rnTemplate }}
call-testcli-old:
name: Test CLI (VS 2019)
needs: setupcheck
strategy:
fail-fast: true
matrix:
rnwVersion: ['0.69-stable'] # test *key* versions that use VS 2019. aka any RNW version < 0.71 that are used by supported partners
useRnwNuGet: [false, true] # test building with both RNW source and RNW NuGet
include:
- rnwVersion: '0.69-stable'
rnTemplate: 'react-native-template-typescript@6.11.9'
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2019
rnwVersion: ${{ matrix.rnwVersion }}
useRnwNuGet: ${{ matrix.useRnwNuGet }}
rnTemplate: ${{ matrix.rnTemplate }}
rnVersion: ${{ matrix.rnVersion }}
call-buildnpmpackage:
name: Build NPM Package
@ -98,6 +80,6 @@ jobs:
prcheck:
name: Successful PR Check
runs-on: ubuntu-latest
needs: [setupcheck, call-runcodegen, call-testcli, call-testcli-old, call-buildnpmpackage, call-buildrnx]
needs: [setupcheck, call-runcodegen, call-testcli, call-buildnpmpackage, call-buildrnx]
steps:
- uses: actions/checkout@v3

2
.github/workflows/template-buildexample.yml поставляемый
Просмотреть файл

@ -39,7 +39,7 @@ jobs:
working-directory: ${{ inputs.exampleName }}
- name: yarn windows
run: yarn windows --no-launch --no-deploy --no-packager --logging ${{ inputs.useBuildCertificate && '--msbuildprops PackageCertificateKeyFile=${{github.workspace}}\GitHubActionsWorkflow.pfx' || '' }}
run: npx @react-native-community/cli run-windows --no-launch --no-deploy --no-packager --logging ${{ inputs.useBuildCertificate && '--msbuildprops PackageCertificateKeyFile=${{github.workspace}}\GitHubActionsWorkflow.pfx' || '' }}
working-directory: ${{ inputs.exampleName }}
- name: Remove the pfx

16
.github/workflows/template-testcli.yml поставляемый
Просмотреть файл

@ -15,9 +15,9 @@ on:
required: false
default: false
type: boolean
rnTemplate:
rnVersion:
required: false
default: 'react-native@latest'
default: 'latest'
type: string
jobs:
@ -37,10 +37,14 @@ jobs:
run: yarn link
working-directory: package
- name: create react-native@${{ inputs.rnwVersion }} app
run: npx react-native init testrnx --template ${{ inputs.rnTemplate }}
- name: create react-native@${{ inputs.rnVersion }} app
run: npx @react-native-community/cli init testrnx --version ${{ inputs.rnVersion }} --skip-install --install-pods false --verbose --skip-git-init true
working-directory: ../
- name: yarn install
run: yarn install
working-directory: ../testrnx
- name: add Windows (RNW via ${{ inputs.useRnwNuGet && 'NuGet' || 'Source' }})
run: npx react-native-windows-init --overwrite ${{ inputs.useRnwNuGet && '--experimentalNuGetDependency true' || '' }}
working-directory: ../testrnx
@ -54,11 +58,11 @@ jobs:
working-directory: ../testrnx
- name: autolink
run: npx react-native autolink-windows --logging
run: npx @react-native-community/cli autolink-windows --logging
working-directory: ../testrnx
- name: build app
run: npx react-native run-windows --no-launch --no-deploy --no-packager --logging
run: npx @react-native-community/cli run-windows --no-launch --no-deploy --no-packager --logging
working-directory: ../testrnx
- name: test app

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

@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Bump to RNW 0.73.21",
"packageName": "react-native-xaml",
"email": "jthysell@microsoft.com",
"dependentChangeType": "patch"
}

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

@ -10,17 +10,17 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-windows": "0.73.4",
"react-native": "0.73.11",
"react-native-windows": "0.73.21",
"react-native-xaml": "*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.2",
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/metro-config": "^0.73.5",
"@react-native/typescript-config": "^0.73.1",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",

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

@ -33,6 +33,9 @@
-->
<UseExperimentalNuget>false</UseExperimentalNuget>
<!-- Necessary as sometimes RNW 0.73 doesn't run with the old `npx react-natve codegen-windows` -->
<CodegenCommand>npx @react-native-community/cli codegen-windows</CodegenCommand>
<ReactExperimentalFeaturesSet>true</ReactExperimentalFeaturesSet>
</PropertyGroup>

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

@ -4,9 +4,9 @@
"native,Version=v0.0": {
"Microsoft.JavaScript.Hermes": {
"type": "Direct",
"requested": "[0.1.18, )",
"resolved": "0.1.18",
"contentHash": "5K8rRihGwIs2XNOTP2Jsw3T6cegxCBQXcpPS4optONU/AmFElGAfnA6XBQJ4UqlCFCl9Nf9zQrgvCUPBWYHiag=="
"requested": "[0.1.27, )",
"resolved": "0.1.27",
"contentHash": "o4YBxD3yVaDfB7ccauyIIcUL3Q+k2C7dv3F9ODkMzUIL/lZBe44BiB2qdw/jchBD3ByUaC/kK3Lm/SW59V1A/w=="
},
"Microsoft.UI.Xaml": {
"type": "Direct",
@ -25,8 +25,8 @@
},
"boost": {
"type": "Transitive",
"resolved": "1.76.0",
"contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
"resolved": "1.83.0",
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
},
"CDebug": {
"type": "Transitive",
@ -39,7 +39,10 @@
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
},
"common": {
"type": "Project"
"type": "Project",
"dependencies": {
"boost": "[1.83.0, )"
}
},
"fmt": {
"type": "Project"
@ -47,34 +50,34 @@
"folly": {
"type": "Project",
"dependencies": {
"boost": "1.76.0",
"fmt": "1.0.0"
"boost": "[1.83.0, )",
"fmt": "[1.0.0, )"
}
},
"microsoft.reactnative": {
"type": "Project",
"dependencies": {
"Common": "1.0.0",
"Folly": "1.0.0",
"Microsoft.JavaScript.Hermes": "0.1.18",
"Microsoft.UI.Xaml": "2.8.0",
"ReactCommon": "1.0.0",
"boost": "1.76.0"
"Common": "[1.0.0, )",
"Folly": "[1.0.0, )",
"Microsoft.JavaScript.Hermes": "[0.1.27, )",
"Microsoft.UI.Xaml": "[2.8.0, )",
"ReactCommon": "[1.0.0, )",
"boost": "[1.83.0, )"
}
},
"reactcommon": {
"type": "Project",
"dependencies": {
"Folly": "1.0.0",
"boost": "1.76.0"
"Folly": "[1.0.0, )",
"boost": "[1.83.0, )"
}
},
"reactnativexaml": {
"type": "Project",
"dependencies": {
"CDebug": "0.0.3",
"Microsoft.ReactNative": "1.0.0",
"Microsoft.UI.Xaml": "2.8.0"
"CDebug": "[0.0.3, )",
"Microsoft.ReactNative": "[1.0.0, )",
"Microsoft.UI.Xaml": "[2.8.0, )"
}
}
},

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

@ -10,17 +10,17 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-windows": "0.73.4",
"react-native": "0.73.11",
"react-native-windows": "0.73.21",
"react-native-xaml": "*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.2",
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/metro-config": "^0.73.5",
"@react-native/typescript-config": "^0.73.1",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",

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

@ -33,6 +33,9 @@
-->
<UseExperimentalNuget>true</UseExperimentalNuget>
<!-- Necessary as sometimes RNW 0.73 doesn't run with the old `npx react-natve codegen-windows` -->
<CodegenCommand>npx @react-native-community/cli codegen-windows</CodegenCommand>
<ReactExperimentalFeaturesSet>true</ReactExperimentalFeaturesSet>
</PropertyGroup>

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

@ -4,21 +4,24 @@
"native,Version=v0.0": {
"Microsoft.JavaScript.Hermes": {
"type": "Direct",
"requested": "[0.1.18, )",
"resolved": "0.1.18",
"contentHash": "5K8rRihGwIs2XNOTP2Jsw3T6cegxCBQXcpPS4optONU/AmFElGAfnA6XBQJ4UqlCFCl9Nf9zQrgvCUPBWYHiag=="
"requested": "[0.1.27, )",
"resolved": "0.1.27",
"contentHash": "o4YBxD3yVaDfB7ccauyIIcUL3Q+k2C7dv3F9ODkMzUIL/lZBe44BiB2qdw/jchBD3ByUaC/kK3Lm/SW59V1A/w=="
},
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.ReactNative.Cxx": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "wAXa85oSqbf46YRw+00NxWyGv4ABGTwNtutJG+Nfz3C1WzrovMI6kviGoOh2yY2cWeYYcHfuvvw6eKf1RsNCGw=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "Hrb8EwDJxQ1HzC6r2Mv+QHOk1VYxpiQC1wbYY+y91AnyMP3OkjTKJCoGiXcf4/dIFmNADSQt+xUSFlTSfmKPow==",
"dependencies": {
"Microsoft.ReactNative": "0.73.21"
}
},
"Microsoft.UI.Xaml": {
"type": "Direct",
@ -48,19 +51,19 @@
"reactnativexaml": {
"type": "Project",
"dependencies": {
"CDebug": "0.0.3",
"Microsoft.ReactNative": "0.73.4",
"Microsoft.ReactNative.Cxx": "0.73.4",
"Microsoft.UI.Xaml": "2.8.0"
"CDebug": "[0.0.3, )",
"Microsoft.ReactNative": "[0.73.21, )",
"Microsoft.ReactNative.Cxx": "[0.73.21, )",
"Microsoft.UI.Xaml": "[2.8.0, )"
}
}
},
"native,Version=v0.0/win10-arm": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -71,9 +74,9 @@
"native,Version=v0.0/win10-arm-aot": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -84,9 +87,9 @@
"native,Version=v0.0/win10-arm64-aot": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -97,9 +100,9 @@
"native,Version=v0.0/win10-x64": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -110,9 +113,9 @@
"native,Version=v0.0/win10-x64-aot": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -123,9 +126,9 @@
"native,Version=v0.0/win10-x86": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -136,9 +139,9 @@
"native,Version=v0.0/win10-x86-aot": {
"Microsoft.ReactNative": {
"type": "Direct",
"requested": "[0.73.4, )",
"resolved": "0.73.4",
"contentHash": "F/ttB+b+/Hfpedp9FRQSWJdVExkhdTqcc3VohGez+lOPpdXQeZzNPpqQlO8G4LzK3XlcSs2hZO7WkWEoaxrgOQ=="
"requested": "[0.73.21, )",
"resolved": "0.73.21",
"contentHash": "8ak3nMuaYcpksQB4ZGFb/mx5gvm0sbUqCPNaBTZOy2LBrzal2E6ufc5axyN71+Y2koR1JAlFGXo+0vbBey83SQ=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",

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

@ -36,8 +36,8 @@
},
"peerDependencies": {
"react": ">= 18.0.0",
"react-native": ">= 0.69.0",
"react-native-windows": ">= 0.69.0",
"react-native": ">= 0.71.0",
"react-native-windows": ">= 0.71.0",
"typescript": "^4.1.2"
},
"devDependencies": {
@ -45,8 +45,8 @@
"beachball": "^2.16.0",
"eslint": "^8.19.0",
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-windows": "0.73.4",
"react-native": "0.73.11",
"react-native-windows": "0.73.21",
"react-native-typescript-transformer": "*",
"typescript": "5.0.4"
},

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

@ -25,13 +25,13 @@
},
"boost": {
"type": "Transitive",
"resolved": "1.76.0",
"contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
"resolved": "1.83.0",
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
},
"Microsoft.JavaScript.Hermes": {
"type": "Transitive",
"resolved": "0.1.18",
"contentHash": "5K8rRihGwIs2XNOTP2Jsw3T6cegxCBQXcpPS4optONU/AmFElGAfnA6XBQJ4UqlCFCl9Nf9zQrgvCUPBWYHiag=="
"resolved": "0.1.27",
"contentHash": "o4YBxD3yVaDfB7ccauyIIcUL3Q+k2C7dv3F9ODkMzUIL/lZBe44BiB2qdw/jchBD3ByUaC/kK3Lm/SW59V1A/w=="
},
"Microsoft.Web.WebView2": {
"type": "Transitive",
@ -39,7 +39,10 @@
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
},
"common": {
"type": "Project"
"type": "Project",
"dependencies": {
"boost": "1.83.0"
}
},
"fmt": {
"type": "Project"
@ -47,7 +50,7 @@
"folly": {
"type": "Project",
"dependencies": {
"boost": "1.76.0",
"boost": "1.83.0",
"fmt": "1.0.0"
}
},
@ -56,17 +59,17 @@
"dependencies": {
"Common": "1.0.0",
"Folly": "1.0.0",
"Microsoft.JavaScript.Hermes": "0.1.18",
"Microsoft.JavaScript.Hermes": "0.1.27",
"Microsoft.UI.Xaml": "2.8.0",
"ReactCommon": "1.0.0",
"boost": "1.76.0"
"boost": "1.83.0"
}
},
"reactcommon": {
"type": "Project",
"dependencies": {
"Folly": "1.0.0",
"boost": "1.76.0"
"boost": "1.83.0"
}
}
},

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

@ -2136,57 +2136,77 @@
resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.21.0.tgz#83f7479c524ab523ac2df702ade30b9724476c72"
integrity sha512-lkC8kZYntxVKr7b8xmjCVUgE0a8xgDakPyDo9uSWavXPyYqLgYYGdEd2j8NxihRyb6UwpX3G/hFUF4/9q2V+/g==
"@react-native-community/cli-clean@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-12.1.1.tgz#4f92b3d5eaa301c9db3fef2cbbaf68b87652f6f1"
integrity sha512-lbEQJ9xO8DmNbES7nFcGIQC0Q15e9q1zwKfkN2ty2eM93ZTFqYzOwsddlNoRN9FO7diakMWoWgielhcfcIeIrQ==
"@react-native-community/cli-clean@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-12.3.6.tgz#e8a7910bebc97266fd5068649013a03958021fc4"
integrity sha512-gUU29ep8xM0BbnZjwz9MyID74KKwutq9x5iv4BCr2im6nly4UMf1B1D+V225wR7VcDGzbgWjaezsJShLLhC5ig==
dependencies:
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
execa "^5.0.0"
"@react-native-community/cli-config@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-12.1.1.tgz#6fe932b6215f731b39eb54c800d1b068a2080666"
integrity sha512-og8/yH7ZNMBcRJOGaHcn9BLt1WJF3XvgBw8iYsByVSEN7yvzAbYZ+CvfN6EdObGOqendbnE4lN9CVyQYM9Ufsw==
"@react-native-community/cli-clean@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-12.3.7.tgz#303ddf1c930918a8bdc4cc58fe0ac2dd05603cd5"
integrity sha512-BCYW77QqyxfhiMEBOoHyciJRNV6Rhz1RvclReIKnCA9wAwmoJBeu4Mu+AwiECA2bUITX16fvPt3NwDsSd1jwfQ==
dependencies:
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
execa "^5.0.0"
"@react-native-community/cli-config@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-12.3.6.tgz#5f0be68270217908a739c32e3155a0e354773251"
integrity sha512-JGWSYQ9EAK6m2v0abXwFLEfsqJ1zkhzZ4CV261QZF9MoUNB6h57a274h1MLQR9mG6Tsh38wBUuNfEPUvS1vYew==
dependencies:
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
cosmiconfig "^5.1.0"
deepmerge "^4.3.0"
glob "^7.1.3"
joi "^17.2.1"
"@react-native-community/cli-debugger-ui@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.1.1.tgz#b2e3854f8f77d2f60f845a0a9553123cedfa4669"
integrity sha512-q427jvbJ0WdDuS6HNdc3EbmUu/dX/+FWCcZI60xB7m1i/8p+LzmrsoR2yIJCricsAIV3hhiFOGfquZDgrbF27Q==
"@react-native-community/cli-config@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-12.3.7.tgz#feb8b93e8ccd6116ac1df0f1d8a0f06872388e51"
integrity sha512-IU2UhO9yj1rEBNhHWGzIXpPDzha4hizLP/PUOrhR4BUf6RVPUWEp+e1PXNGR0qjIf6esu7OC7t6mLOhH0NUJEw==
dependencies:
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
cosmiconfig "^5.1.0"
deepmerge "^4.3.0"
glob "^7.1.3"
joi "^17.2.1"
"@react-native-community/cli-debugger-ui@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.6.tgz#418027a1ae76850079684d309a732eb378c7f690"
integrity sha512-SjUKKsx5FmcK9G6Pb6UBFT0s9JexVStK5WInmANw75Hm7YokVvHEgtprQDz2Uvy5znX5g2ujzrkIU//T15KQzA==
dependencies:
serve-static "^1.13.1"
"@react-native-community/cli-debugger-ui@12.3.2":
version "12.3.2"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.2.tgz#b2743876b03e560fbf5ef516e95387fcb6d91630"
integrity sha512-nSWQUL+51J682DlfcC1bjkUbQbGvHCC25jpqTwHIjmmVjYCX1uHuhPSqQKgPNdvtfOkrkACxczd7kVMmetxY2Q==
"@react-native-community/cli-debugger-ui@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.7.tgz#522aa11c7b4ff4a2ec86492fabee0366d5428b4c"
integrity sha512-UHUFrRdcjWSCdWG9KIp2QjuRIahBQnb9epnQI7JCq6NFbFHYfEI4rI7msjMn+gG8/tSwKTV2PTPuPmZ5wWlE7Q==
dependencies:
serve-static "^1.13.1"
"@react-native-community/cli-doctor@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-12.1.1.tgz#e651a63c537ad7c9b8d9baa69e63947f5384a6bd"
integrity sha512-IUZJ/KUCuz+IzL9GdHUlIf6zF93XadxCBDPseUYb0ucIS+rEb3RmYC+IukYhUWwN3y4F/yxipYy3ytKrQ33AxA==
"@react-native-community/cli-doctor@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-12.3.6.tgz#f68b51bbc6554ff4837269d98e9e405044e6f1b9"
integrity sha512-fvBDv2lTthfw4WOQKkdTop2PlE9GtfrlNnpjB818MhcdEnPjfQw5YaTUcnNEGsvGomdCs1MVRMgYXXwPSN6OvQ==
dependencies:
"@react-native-community/cli-config" "12.1.1"
"@react-native-community/cli-platform-android" "12.1.1"
"@react-native-community/cli-platform-ios" "12.1.1"
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-config" "12.3.6"
"@react-native-community/cli-platform-android" "12.3.6"
"@react-native-community/cli-platform-ios" "12.3.6"
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
command-exists "^1.2.8"
deepmerge "^4.3.0"
envinfo "^7.10.0"
execa "^5.0.0"
hermes-profile-transformer "^0.0.6"
ip "^1.1.5"
node-stream-zip "^1.9.1"
ora "^5.4.1"
semver "^7.5.2"
@ -2194,53 +2214,113 @@
wcwidth "^1.0.1"
yaml "^2.2.1"
"@react-native-community/cli-hermes@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-12.1.1.tgz#9b48c91acb4db88aab648e92d4d1fe19cd0a6191"
integrity sha512-J6yxQoZooFRT8+Dtz8Px/bwasQxnbxZZFAFQzOs3f6CAfXrcr/+JLVFZRWRv9XGfcuLdCHr22JUVPAnyEd48DA==
"@react-native-community/cli-doctor@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-12.3.7.tgz#31e4784182d6bbfe62f2e728dca87ee23efe0564"
integrity sha512-gCamZztRoAyhciuQPqdz4Xe4t3gOdNsaADNd+rva+Rx8W2PoPeNv60i7/et06wlsn6B6Sh0/hMiAftJbiHDFkg==
dependencies:
"@react-native-community/cli-platform-android" "12.1.1"
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-config" "12.3.7"
"@react-native-community/cli-platform-android" "12.3.7"
"@react-native-community/cli-platform-ios" "12.3.7"
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
command-exists "^1.2.8"
deepmerge "^4.3.0"
envinfo "^7.10.0"
execa "^5.0.0"
hermes-profile-transformer "^0.0.6"
node-stream-zip "^1.9.1"
ora "^5.4.1"
semver "^7.5.2"
strip-ansi "^5.2.0"
wcwidth "^1.0.1"
yaml "^2.2.1"
"@react-native-community/cli-hermes@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-12.3.6.tgz#5ac2c9ee26c69e1ce6b5047ba0f399984a6dea16"
integrity sha512-sNGwfOCl8OAIjWCkwuLpP8NZbuO0dhDI/2W7NeOGDzIBsf4/c4MptTrULWtGIH9okVPLSPX0NnRyGQ+mSwWyuQ==
dependencies:
"@react-native-community/cli-platform-android" "12.3.6"
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
hermes-profile-transformer "^0.0.6"
ip "^1.1.5"
"@react-native-community/cli-platform-android@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-12.1.1.tgz#f6541ee07ee479ee0e1b082cbf4ff970737606e4"
integrity sha512-jnyc9y5cPltBo518pfVZ53dtKGDy02kkCkSIwv4ltaHYse7JyEFxFbzBn9lloWvbZ0iFHvEo1NN78YGPAlXSDw==
"@react-native-community/cli-hermes@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-12.3.7.tgz#4a284e0091469f6cce8caad2fefcf6b45c0cf229"
integrity sha512-ezzeiSKjRXK2+i1AAe7NhhN9CEHrgtRmTn2MAdBpE++N8fH5EQZgxFcGgGdwGvns2fm9ivyyeVnI5eAYwvM+jg==
dependencies:
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-platform-android" "12.3.7"
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
hermes-profile-transformer "^0.0.6"
"@react-native-community/cli-platform-android@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.6.tgz#e1103692c659ff0b72ee6f00b7c72578db7376ec"
integrity sha512-DeDDAB8lHpuGIAPXeeD9Qu2+/wDTFPo99c8uSW49L0hkmZJixzvvvffbGQAYk32H0TmaI7rzvzH+qzu7z3891g==
dependencies:
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.2.4"
glob "^7.1.3"
logkitty "^0.7.1"
"@react-native-community/cli-platform-ios@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.1.1.tgz#399fc39279b8bd95f372c0f69180696b6f9767e1"
integrity sha512-RA2lvFrswwQRIhCV3hoIYZmLe9TkRegpAWimdubtMxRHiv7Eh2dC0VWWR5VdWy3ltbJzeiEpxCoH/EcrMfp9tg==
"@react-native-community/cli-platform-android@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.7.tgz#4826f5126f950e29d7ef1ac779c4eed56d251f98"
integrity sha512-mOltF3cpjNdJb3WSFwEHc1GH4ibCcnOvQ34OdWyblKy9ijuvG5SjNTlYR/UW/CURaDi3OUKAhxQMTY5d27bzGQ==
dependencies:
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.2.4"
glob "^7.1.3"
logkitty "^0.7.1"
"@react-native-community/cli-platform-ios@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.6.tgz#e7decb5ee764f5fdc7a6ad1ba5e15de8929d54a5"
integrity sha512-3eZ0jMCkKUO58wzPWlvAPRqezVKm9EPZyaPyHbRPWU8qw7JqkvnRlWIaYDGpjCJgVW4k2hKsEursLtYKb188tg==
dependencies:
"@react-native-community/cli-tools" "12.3.6"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.0.12"
glob "^7.1.3"
ora "^5.4.1"
"@react-native-community/cli-plugin-metro@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.1.1.tgz#446f829aa37caee7440d863a42d0f600a4713d8b"
integrity sha512-HV+lW1mFSu6GL7du+0/tfq8/5jytKp+w3n4+MWzRkx5wXvUq3oJjzwe8y+ZvvCqkRPdsOiwFDgJrtPhvaZp+xA==
"@react-native-community/cli-server-api@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.1.1.tgz#c00319cba3cdd1ba2cf82286cfa4aa3a6bc6a5b2"
integrity sha512-dUqqEmtEiCMyqFd6LF1UqH0WwXirK2tpU7YhyFsBbigBj3hPz2NmzghCe7DRIcC9iouU0guBxhgmiLtmUEPduQ==
"@react-native-community/cli-platform-ios@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.7.tgz#ef90e5c4d9ff5f15071b18179b17cf16699a70e5"
integrity sha512-2WnVsMH4ORZIhBm/5nCms1NeeKG4KarNC7PMLmrXWXB/bibDcaNsjrJiqnmCUcpTEvTQTokRfoO7Aj6NM0Cqow==
dependencies:
"@react-native-community/cli-debugger-ui" "12.1.1"
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-tools" "12.3.7"
chalk "^4.1.2"
execa "^5.0.0"
fast-xml-parser "^4.0.12"
glob "^7.1.3"
ora "^5.4.1"
"@react-native-community/cli-plugin-metro@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.6.tgz#ae62de18e998478db60a3fe10dc746162c272dbd"
integrity sha512-3jxSBQt4fkS+KtHCPSyB5auIT+KKIrPCv9Dk14FbvOaEh9erUWEm/5PZWmtboW1z7CYeNbFMeXm9fM2xwtVOpg==
"@react-native-community/cli-plugin-metro@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.7.tgz#f9be724721a52d800a20f641a2241a7b4e6a9477"
integrity sha512-ahEw0Vfnv2Nv/jdZ2QDuGjQ9l2SczO4lXjb3ubu5vEYNLyTw3jYsLMK6iES7YQ/ApQmKdG476HU1O9uZdpaYPg==
"@react-native-community/cli-server-api@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.3.6.tgz#cd78122954a02d22c7821c365938635b51ddd1bd"
integrity sha512-80NIMzo8b2W+PL0Jd7NjiJW9mgaT8Y8wsIT/lh6mAvYH7mK0ecDJUYUTAAv79Tbo1iCGPAr3T295DlVtS8s4yQ==
dependencies:
"@react-native-community/cli-debugger-ui" "12.3.6"
"@react-native-community/cli-tools" "12.3.6"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.1"
@ -2249,13 +2329,13 @@
serve-static "^1.13.1"
ws "^7.5.1"
"@react-native-community/cli-server-api@12.3.2":
version "12.3.2"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.3.2.tgz#11df4e20ed72d59cf22adf77bd30aff3d6e70dc9"
integrity sha512-iwa7EO9XFA/OjI5pPLLpI/6mFVqv8L73kNck3CNOJIUCCveGXBKK0VMyOkXaf/BYnihgQrXh+x5cxbDbggr7+Q==
"@react-native-community/cli-server-api@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.3.7.tgz#81e2a067c120391242740598010abb8d5d36a739"
integrity sha512-LYETs3CCjrLn1ZU0kYv44TywiIl5IPFHZGeXhAh2TtgOk4mo3kvXxECDil9CdO3bmDra6qyiG61KHvzr8IrHdg==
dependencies:
"@react-native-community/cli-debugger-ui" "12.3.2"
"@react-native-community/cli-tools" "12.3.2"
"@react-native-community/cli-debugger-ui" "12.3.7"
"@react-native-community/cli-tools" "12.3.7"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.1"
@ -2264,10 +2344,10 @@
serve-static "^1.13.1"
ws "^7.5.1"
"@react-native-community/cli-tools@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.1.1.tgz#c70df5da2d3ad61e5e8ab70dd36d84a89c322b23"
integrity sha512-c9vjDVojZnivGsLoVoTZsJjHnwBEI785yV8mgyKTVFx1sciK8lCsIj1Lke7jNpz7UAE1jW94nI7de2B1aQ9rbA==
"@react-native-community/cli-tools@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.3.6.tgz#c39965982347635dfaf1daa7b3c0133b3bd45e64"
integrity sha512-FPEvZn19UTMMXUp/piwKZSh8cMEfO8G3KDtOwo53O347GTcwNrKjgZGtLSPELBX2gr+YlzEft3CoRv2Qmo83fQ==
dependencies:
appdirsjs "^1.2.4"
chalk "^4.1.2"
@ -2280,10 +2360,10 @@
shell-quote "^1.7.3"
sudo-prompt "^9.0.0"
"@react-native-community/cli-tools@12.3.2":
version "12.3.2"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.3.2.tgz#d3362b04fba3f73ec82c5a493696b575acfb420c"
integrity sha512-nDH7vuEicHI2TI0jac/DjT3fr977iWXRdgVAqPZFFczlbs7A8GQvEdGnZ1G8dqRUmg+kptw0e4hwczAOG89JzQ==
"@react-native-community/cli-tools@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.3.7.tgz#65cf1c81d13662a1b0396c753e6ff916e3e92083"
integrity sha512-7NL/1/i+wzd4fBr/FSr3ypR05tiU/Kv9l/M1sL1c6jfcDtWXAL90R161gQkQFK7shIQ8Idp0dQX1rq49tSyfQw==
dependencies:
appdirsjs "^1.2.4"
chalk "^4.1.2"
@ -2296,27 +2376,34 @@
shell-quote "^1.7.3"
sudo-prompt "^9.0.0"
"@react-native-community/cli-types@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.1.1.tgz#5a5c0593f50dc394af5265364d0e919ba6134653"
integrity sha512-B9lFEIc1/H2GjiyRCk6ISJNn06h5j0cWuokNm3FmeyGOoGIfm4XYUbnM6IpGlIDdQpTtUzZfNq8CL4CIJZXF0g==
"@react-native-community/cli-types@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.3.6.tgz#239de348800fe1ffba3eb1fe0edbeb9306981e57"
integrity sha512-xPqTgcUtZowQ8WKOkI9TLGBwH2bGggOC4d2FFaIRST3gTcjrEeGRNeR5aXCzJFIgItIft8sd7p2oKEdy90+01Q==
dependencies:
joi "^17.2.1"
"@react-native-community/cli@12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-12.1.1.tgz#55e413ee620bea1e6b58c92dad2e9f196d3a5af2"
integrity sha512-St/lyxQ//crrigfE2QCqmjDb0IH3S9nmolm0eqmCA1bB8WWUk5dpjTgQk6xxDxz+3YtMghDJkGZPK4AxDXT42g==
"@react-native-community/cli-types@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.3.7.tgz#6f55becdc41bb5ebf1a8f6fd27ad0d198831169d"
integrity sha512-NFtUMyIrNfi3A5C1cjVKDVvYHvvOF7MnOMwdD8jm2NQKewQJrehKBh1eMuykKdqhWyZmuemD4KKhL8f4FxgG0w==
dependencies:
"@react-native-community/cli-clean" "12.1.1"
"@react-native-community/cli-config" "12.1.1"
"@react-native-community/cli-debugger-ui" "12.1.1"
"@react-native-community/cli-doctor" "12.1.1"
"@react-native-community/cli-hermes" "12.1.1"
"@react-native-community/cli-plugin-metro" "12.1.1"
"@react-native-community/cli-server-api" "12.1.1"
"@react-native-community/cli-tools" "12.1.1"
"@react-native-community/cli-types" "12.1.1"
joi "^17.2.1"
"@react-native-community/cli@12.3.6":
version "12.3.6"
resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-12.3.6.tgz#7a323b78725b959bb8a31cca1145918263ff3c8d"
integrity sha512-647OSi6xBb8FbwFqX9zsJxOzu685AWtrOUWHfOkbKD+5LOpGORw+GQo0F9rWZnB68rLQyfKUZWJeaD00pGv5fw==
dependencies:
"@react-native-community/cli-clean" "12.3.6"
"@react-native-community/cli-config" "12.3.6"
"@react-native-community/cli-debugger-ui" "12.3.6"
"@react-native-community/cli-doctor" "12.3.6"
"@react-native-community/cli-hermes" "12.3.6"
"@react-native-community/cli-plugin-metro" "12.3.6"
"@react-native-community/cli-server-api" "12.3.6"
"@react-native-community/cli-tools" "12.3.6"
"@react-native-community/cli-types" "12.3.6"
chalk "^4.1.2"
commander "^9.4.1"
deepmerge "^4.3.0"
@ -2327,15 +2414,39 @@
prompts "^2.4.2"
semver "^7.5.2"
"@react-native-windows/cli@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native-windows/cli/-/cli-0.73.1.tgz#9669f6fa4d0f08ec634b3f1c341c5a1619499674"
integrity sha512-NMUjdcvQLvuxrNnMEgIZ54n3kItxnhO6S/PCX0izyKsuiVJUVgGSaiARUMmEOOjTh80MhS9KFiE+FNvRksJ2iQ==
"@react-native-community/cli@12.3.7":
version "12.3.7"
resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-12.3.7.tgz#8f53ec9310367a0204d859005e9cd137f9888382"
integrity sha512-7+mOhk+3+X3BjSJZZvYrDJynA00gPYTlvT28ZjiLlbuVGfqfNiBKaxuF7rty+gjjpch4iKGvLhIhSN5cuOsdHQ==
dependencies:
"@react-native-windows/codegen" "0.73.0"
"@react-native-windows/fs" "0.73.0"
"@react-native-windows/package-utils" "0.73.0"
"@react-native-windows/telemetry" "0.73.1"
"@react-native-community/cli-clean" "12.3.7"
"@react-native-community/cli-config" "12.3.7"
"@react-native-community/cli-debugger-ui" "12.3.7"
"@react-native-community/cli-doctor" "12.3.7"
"@react-native-community/cli-hermes" "12.3.7"
"@react-native-community/cli-plugin-metro" "12.3.7"
"@react-native-community/cli-server-api" "12.3.7"
"@react-native-community/cli-tools" "12.3.7"
"@react-native-community/cli-types" "12.3.7"
chalk "^4.1.2"
commander "^9.4.1"
deepmerge "^4.3.0"
execa "^5.0.0"
find-up "^4.1.0"
fs-extra "^8.1.0"
graceful-fs "^4.1.3"
prompts "^2.4.2"
semver "^7.5.2"
"@react-native-windows/cli@0.73.6":
version "0.73.6"
resolved "https://registry.yarnpkg.com/@react-native-windows/cli/-/cli-0.73.6.tgz#c3772ec5ce0c9c2b73337404b6682fc643f68461"
integrity sha512-vNsAhhxYCEOjyk4hIeo/hwyMrkltUczhh8VZw0oNNf1z/eN60bKQR7cE8cAWByosIizE+F5SpNCjB8hkzglfMw==
dependencies:
"@react-native-windows/codegen" "0.73.2"
"@react-native-windows/fs" "0.73.1"
"@react-native-windows/package-utils" "0.73.1"
"@react-native-windows/telemetry" "0.73.2"
"@xmldom/xmldom" "^0.7.7"
chalk "^4.1.0"
cli-spinners "^2.2.0"
@ -2354,49 +2465,49 @@
xml-parser "^1.2.1"
xpath "^0.0.27"
"@react-native-windows/codegen@0.73.0":
version "0.73.0"
resolved "https://registry.yarnpkg.com/@react-native-windows/codegen/-/codegen-0.73.0.tgz#8f7866478baa5c02af31bf79fd44b65cd9076de0"
integrity sha512-M+R8JzUEizAE23MkBOuSdyDGv9BeZx47L6gUWlXI4fyM9LjXpdYU0g6la8ZWleiLrDtHW0JIz95w8KkghpB6hg==
"@react-native-windows/codegen@0.73.2":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native-windows/codegen/-/codegen-0.73.2.tgz#27d23022d38b3a83b599c0eb1b235eb445421065"
integrity sha512-1AJhU/2p3BmQYylBxh22FeDd4ZGhFobpfsxs4CJjgjE7WrZNxm/g1QnzzbMLMmJkzDkSyIu0tS3z5ZuDQqBIcA==
dependencies:
"@react-native-windows/fs" "0.73.0"
"@react-native-windows/fs" "0.73.1"
chalk "^4.1.0"
globby "^11.0.4"
globby "^11.1.0"
mustache "^4.0.1"
source-map-support "^0.5.19"
yargs "^16.2.0"
"@react-native-windows/find-repo-root@0.73.0":
version "0.73.0"
resolved "https://registry.yarnpkg.com/@react-native-windows/find-repo-root/-/find-repo-root-0.73.0.tgz#21a2983bfd4052323a4672ed2e32a5c3af8627a7"
integrity sha512-ahEgLmFYNvXw5I1ETJDhNMyZ/iR+DK4iOZ9YaT4EQzEPGKgj8a/4kvStSyMa117m6yRPeM8hCrhsfsHoRCphBA==
"@react-native-windows/find-repo-root@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native-windows/find-repo-root/-/find-repo-root-0.73.1.tgz#97856ee388f2f603adca3df94b0359a8da80a4ba"
integrity sha512-CsYidJxvJYIUmbqgrzZEWbVnZjvY4CpfVXlNKhi1BpYj0F26eCAHNHYS38QS+9FIoy+YOyE+jEoTsGVhXkXmOA==
dependencies:
"@react-native-windows/fs" "0.73.0"
"@react-native-windows/fs" "0.73.1"
find-up "^4.1.0"
"@react-native-windows/fs@0.73.0":
version "0.73.0"
resolved "https://registry.yarnpkg.com/@react-native-windows/fs/-/fs-0.73.0.tgz#5fcdada259f286dff8d462505982c9113a2ca612"
integrity sha512-Vg0gJavc6oO4TkTMK+s8V+1KhLlJgdtuwsUaBNRfhi+Dr/lWy7GKitV6rBn/UkG8DCt9LBmwdCZWpncxSs8CDA==
"@react-native-windows/fs@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native-windows/fs/-/fs-0.73.1.tgz#7aa9e679b81463662f8a008d895c2e2ac179a701"
integrity sha512-FVJeyc1uRJguEdwWsucrOnRWQOB3JlRapPqL3EKUO/i1TX0Fbd8b8MCb9pjCOihoHnN0+aCY9Y8aSar2M33kAw==
dependencies:
graceful-fs "^4.2.8"
"@react-native-windows/package-utils@0.73.0":
version "0.73.0"
resolved "https://registry.yarnpkg.com/@react-native-windows/package-utils/-/package-utils-0.73.0.tgz#b274455210f843a39367a192e7294835a769df9a"
integrity sha512-a3CuH8RPBfIwwPYi7gjyLmvRTzjFfXpePdLAC6afXHNbc5+VR6QJJ/VPhO9kQEvUxrQCXKXRXMGsUWrg0TNTEA==
"@react-native-windows/package-utils@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native-windows/package-utils/-/package-utils-0.73.1.tgz#4bdd055b1706a47491b59a488b49161500954164"
integrity sha512-psr0ESygZWJoyCXreRzOOJa7cIWuZ5btrpeMYvoFej1p/CaJA65pLHuFiFaFi580KkHFvHJYG8mY3K4PDzqctA==
dependencies:
"@react-native-windows/find-repo-root" "0.73.0"
"@react-native-windows/fs" "0.73.0"
"@react-native-windows/find-repo-root" "0.73.1"
"@react-native-windows/fs" "0.73.1"
get-monorepo-packages "^1.2.0"
lodash "^4.17.15"
"@react-native-windows/telemetry@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native-windows/telemetry/-/telemetry-0.73.1.tgz#f29d6f43a7419283edb743dcc172143435491c84"
integrity sha512-xaZXwmxmIrmHrj39la8t0sTSDNs8h+oVyfACSGMvRvFLA5iniSOD4toP5Ag5skO7Z9+jROdULVv4wvi6yp4zvg==
"@react-native-windows/telemetry@0.73.2":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native-windows/telemetry/-/telemetry-0.73.2.tgz#fa6078a1af622690b945b4daebaaca656b2779cd"
integrity sha512-QOo5t6aiO+BlPdJgQGYY/9IWtOkI4h/YoAYbpuFsMsLfBuyzM+5yovoeamIf5Cd9zFYM0YUswZ0VJx4Q7zP4zQ==
dependencies:
"@react-native-windows/fs" "0.73.0"
"@react-native-windows/fs" "0.73.1"
"@xmldom/xmldom" "^0.7.7"
applicationinsights "2.7.3"
ci-info "^3.2.0"
@ -2405,27 +2516,22 @@
os-locale "^5.0.0"
xpath "^0.0.27"
"@react-native/assets-registry@^0.73.1":
"@react-native/assets-registry@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.73.1.tgz#e2a6b73b16c183a270f338dc69c36039b3946e85"
integrity sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==
"@react-native/assets@1.0.0":
version "1.0.0"
resolved "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz"
integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==
"@react-native/babel-plugin-codegen@0.73.3":
version "0.73.3"
resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.3.tgz#6bf135322b89264342c80778ee6bb697f968f773"
integrity sha512-+zQrDDbz6lB48LyzFHxNCgXDCBHH+oTRdXAjikRcBUdeG9St9ABbYFLtb799zSxLOrCqFVyXqhJR2vlgLLEbcg==
"@react-native/babel-plugin-codegen@0.73.4":
version "0.73.4"
resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.4.tgz#8a2037d5585b41877611498ae66adbf1dddfec1b"
integrity sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==
dependencies:
"@react-native/codegen" "0.73.2"
"@react-native/codegen" "0.73.3"
"@react-native/babel-preset@0.73.20", "@react-native/babel-preset@^0.73.18":
version "0.73.20"
resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.20.tgz#65ab68cce16bb222bb1faece498abb6f7b1d5db0"
integrity sha512-fU9NqkusbfFq71l4BWQfqqD/lLcLC0MZ++UYgieA3j8lIEppJTLVauv2RwtD2yltBkjebgYEC5Rwvt1l0MUBXw==
"@react-native/babel-preset@0.73.21", "@react-native/babel-preset@^0.73.21":
version "0.73.21"
resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.21.tgz#174c16493fa4e311b2f5f0c58d4f3c6a5a68bbea"
integrity sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==
dependencies:
"@babel/core" "^7.20.0"
"@babel/plugin-proposal-async-generator-functions" "^7.0.0"
@ -2466,14 +2572,14 @@
"@babel/plugin-transform-typescript" "^7.5.0"
"@babel/plugin-transform-unicode-regex" "^7.0.0"
"@babel/template" "^7.0.0"
"@react-native/babel-plugin-codegen" "0.73.3"
"@react-native/babel-plugin-codegen" "0.73.4"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
"@react-native/codegen@0.73.2", "@react-native/codegen@^0.73.2":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.73.2.tgz#58af4e4c3098f0e6338e88ec64412c014dd51519"
integrity sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==
"@react-native/codegen@0.73.3":
version "0.73.3"
resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.73.3.tgz#cc984a8b17334d986cc600254a0d4b7fa7d68a94"
integrity sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==
dependencies:
"@babel/parser" "^7.20.0"
flow-parser "^0.206.0"
@ -2483,15 +2589,32 @@
mkdirp "^0.5.1"
nullthrows "^1.1.1"
"@react-native/community-cli-plugin@^0.73.10":
version "0.73.14"
resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.14.tgz#e7767df11a8f54fd84ebff36d8962ef733c8143d"
integrity sha512-KzIwsTvAJrXPtwhGOSm+OcJH1B8TpY8cS4xxzu/e2qv3a2n4VLePHTPAfco1tmvekV8OHWvvD9JSIX7i2fB1gg==
"@react-native/community-cli-plugin@0.73.17":
version "0.73.17"
resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.17.tgz#37b381a8b503a3296eaa6727e0c52ea8835add28"
integrity sha512-F3PXZkcHg+1ARIr6FRQCQiB7ZAA+MQXGmq051metRscoLvgYJwj7dgC8pvgy0kexzUkHu5BNKrZeySzUft3xuQ==
dependencies:
"@react-native-community/cli-server-api" "12.3.2"
"@react-native-community/cli-tools" "12.3.2"
"@react-native/dev-middleware" "0.73.7"
"@react-native/metro-babel-transformer" "0.73.14"
"@react-native-community/cli-server-api" "12.3.6"
"@react-native-community/cli-tools" "12.3.6"
"@react-native/dev-middleware" "0.73.8"
"@react-native/metro-babel-transformer" "0.73.15"
chalk "^4.0.0"
execa "^5.1.1"
metro "^0.80.3"
metro-config "^0.80.3"
metro-core "^0.80.3"
node-fetch "^2.2.0"
readline "^1.3.0"
"@react-native/community-cli-plugin@0.73.18":
version "0.73.18"
resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.18.tgz#ba2a0933fad574684534eea29f1c5d2cab494854"
integrity sha512-RN8piDh/eF+QT6YYmrj3Zd9uiaDsRY/kMT0FYR42j8/M/boE4hs4Xn0u91XzT8CAkU9q/ilyo3wJsXIJo2teww==
dependencies:
"@react-native-community/cli-server-api" "12.3.7"
"@react-native-community/cli-tools" "12.3.7"
"@react-native/dev-middleware" "0.73.8"
"@react-native/metro-babel-transformer" "0.73.15"
chalk "^4.0.0"
execa "^5.1.1"
metro "^0.80.3"
@ -2505,10 +2628,10 @@
resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz#033757614d2ada994c68a1deae78c1dd2ad33c2b"
integrity sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==
"@react-native/dev-middleware@0.73.7":
version "0.73.7"
resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.73.7.tgz#61d2bf08973d9a537fa3f2a42deeb13530d721ae"
integrity sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==
"@react-native/dev-middleware@0.73.8":
version "0.73.8"
resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.73.8.tgz#2e43722a00c7b8db753f747f40267cbad6caba4d"
integrity sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==
dependencies:
"@isaacs/ttlcache" "^1.4.1"
"@react-native/debugger-frontend" "0.73.3"
@ -2520,8 +2643,9 @@
open "^7.0.3"
serve-static "^1.13.1"
temp-dir "^2.0.0"
ws "^6.2.2"
"@react-native/eslint-config@^0.73.1":
"@react-native/eslint-config@^0.73.2":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.73.2.tgz#40b2cd8ce245e90c885b8ab15fae1219a946bfac"
integrity sha512-YzMfes19loTfbrkbYNAfHBDXX4oRBzc5wnvHs4h2GIHUj6YKs5ZK5lldqSrBJCdZAI3nuaO9Qj+t5JRwou571w==
@ -2545,37 +2669,42 @@
resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.73.1.tgz#79d2c4d90c80bfad8900db335bfbaf1ca599abdc"
integrity sha512-8BNMFE8CAI7JLWLOs3u33wcwcJ821LYs5g53Xyx9GhSg0h8AygTwDrwmYb/pp04FkCNCPjKPBoaYRthQZmxgwA==
"@react-native/gradle-plugin@^0.73.4":
"@react-native/gradle-plugin@0.73.4":
version "0.73.4"
resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.73.4.tgz#aa55784a8c2b471aa89934db38c090d331baf23b"
integrity sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==
"@react-native/js-polyfills@0.73.1", "@react-native/js-polyfills@^0.73.1":
"@react-native/gradle-plugin@0.73.5":
version "0.73.5"
resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.73.5.tgz#900126b4e5737eaac22a0fddb2fc5b4cc20da41c"
integrity sha512-Orrn8J/kqzEuXudl96XcZk84ZcdIpn1ojjwGSuaSQSXNcCYbOXyt0RwtW5kjCqjgSzGnOMsJNZc5FDXHVq/WzA==
"@react-native/js-polyfills@0.73.1":
version "0.73.1"
resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz#730b0a7aaab947ae6f8e5aa9d995e788977191ed"
integrity sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==
"@react-native/metro-babel-transformer@0.73.14":
version "0.73.14"
resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.14.tgz#a4ee02c729216e4ab5b7c7aa28abbfe8e0a943a8"
integrity sha512-5wLeYw/lormpSqYfI9H/geZ/EtPmi+x5qLkEit15Q/70hkzYo/M+aWztUtbOITfgTEOP8d6ybROzoGsqgyZLcw==
"@react-native/metro-babel-transformer@0.73.15":
version "0.73.15"
resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.15.tgz#c516584dde62d65a46668074084359c03e6a50f1"
integrity sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==
dependencies:
"@babel/core" "^7.20.0"
"@react-native/babel-preset" "0.73.20"
"@react-native/babel-preset" "0.73.21"
hermes-parser "0.15.0"
nullthrows "^1.1.1"
"@react-native/metro-config@^0.73.2":
version "0.73.4"
resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.73.4.tgz#475feab57a60734c5f40c60ef92f4552dec6174c"
integrity sha512-4IpWb9InOY23ssua6z/ho2B4uRqF4QaNHGg4aV3D/og5yiVF39GEm/REHU36i+KoHRO3GcB6DrI7N9KrcvgGBw==
"@react-native/metro-config@^0.73.5":
version "0.73.5"
resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.73.5.tgz#791242ca93057d7299ce18379ea11d3bdb368ea9"
integrity sha512-3bNWoHzOzP/+qoLJtRhOVXrnxKmSY3i4y5PXyMQlIvvOI/GQbXulPpEZxK/yUrf1MmeXHLLFufFbQWlfDEDoxA==
dependencies:
"@react-native/js-polyfills" "0.73.1"
"@react-native/metro-babel-transformer" "0.73.14"
"@react-native/metro-babel-transformer" "0.73.15"
metro-config "^0.80.3"
metro-runtime "^0.80.3"
"@react-native/normalize-colors@^0.73.0", "@react-native/normalize-colors@^0.73.2":
"@react-native/normalize-colors@0.73.2", "@react-native/normalize-colors@^0.73.0":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz#cc8e48fbae2bbfff53e12f209369e8d2e4cf34ec"
integrity sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==
@ -2585,7 +2714,7 @@
resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.73.1.tgz#c97a42f5cd264069bfe86b737c531ed2f042ae6d"
integrity sha512-7Wrmdp972ZO7xvDid+xRGtvX6xz47cpGj7Y7VKlUhSVFFqbOGfB5WCpY1vMr6R/fjl+Og2fRw+TETN2+JnJi0w==
"@react-native/virtualized-lists@^0.73.3":
"@react-native/virtualized-lists@0.73.4":
version "0.73.4"
resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz#640e594775806f63685435b5d9c3d05c378ccd8c"
integrity sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==
@ -4779,7 +4908,7 @@ globalthis@^1.0.3:
dependencies:
define-properties "^1.1.3"
globby@^11.0.0, globby@^11.0.4, globby@^11.1.0:
globby@^11.0.0, globby@^11.1.0:
version "11.1.0"
resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
@ -5059,11 +5188,6 @@ invert-kv@^3.0.0:
resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.1.tgz"
integrity sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==
ip@^1.1.5:
version "1.1.9"
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396"
integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==
is-array-buffer@^3.0.1:
version "3.0.1"
resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"
@ -6125,14 +6249,29 @@ metro-resolver@0.80.5:
resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.80.5.tgz#3915be3b2bcf4f3e9e2f24bdde8d8c9ac26bb134"
integrity sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==
metro-runtime@0.80.5, metro-runtime@^0.80.0, metro-runtime@^0.80.3:
metro-runtime@0.80.5, metro-runtime@^0.80.3:
version "0.80.5"
resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.80.5.tgz#48ac4c732be195e0ebdefb5ac5d32c7da76305ad"
integrity sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==
dependencies:
"@babel/runtime" "^7.0.0"
metro-source-map@0.80.5, metro-source-map@^0.80.0:
metro-source-map@0.80.12, metro-source-map@^0.80.3:
version "0.80.12"
resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.80.12.tgz#36a2768c880f8c459d6d758e2d0975e36479f49c"
integrity sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==
dependencies:
"@babel/traverse" "^7.20.0"
"@babel/types" "^7.20.0"
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
metro-symbolicate "0.80.12"
nullthrows "^1.1.1"
ob1 "0.80.12"
source-map "^0.5.6"
vlq "^1.0.0"
metro-source-map@0.80.5:
version "0.80.5"
resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.80.5.tgz#21acdc1d5417cf3009209555d84cbeb61de5d6d5"
integrity sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==
@ -6146,6 +6285,19 @@ metro-source-map@0.80.5, metro-source-map@^0.80.0:
source-map "^0.5.6"
vlq "^1.0.0"
metro-symbolicate@0.80.12:
version "0.80.12"
resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz#3a6aa783c6e494e2879342d88d5379fab69d1ed2"
integrity sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==
dependencies:
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
metro-source-map "0.80.12"
nullthrows "^1.1.1"
source-map "^0.5.6"
through2 "^2.0.1"
vlq "^1.0.0"
metro-symbolicate@0.80.5:
version "0.80.5"
resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.80.5.tgz#7c253a8e05e2a8380753373ab30705d6e81094a5"
@ -6418,6 +6570,13 @@ nullthrows@^1.1.1:
resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"
integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
ob1@0.80.12:
version "0.80.12"
resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.12.tgz#0451944ba6e5be225cc9751d8cd0d7309d2d1537"
integrity sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==
dependencies:
flow-enums-runtime "^0.0.6"
ob1@0.80.5:
version "0.80.5"
resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.5.tgz#101f5257f7e6b75599dcd55c20bfcf2a4016c37c"
@ -6900,29 +7059,29 @@ react-native-typescript-transformer@*:
semver "^5.4.1"
source-map "^0.5.6"
react-native-windows@0.73.4:
version "0.73.4"
resolved "https://registry.yarnpkg.com/react-native-windows/-/react-native-windows-0.73.4.tgz#780b03f31d23354ebcd0bd094cbaec2098bf38fe"
integrity sha512-qk5Br2/EtAxUMYFhrn2erJm/LAM/RZz0DNoK6IV1Dmfkd3Cb0rPCiovJDdklFAWHL9ZKjfJ5ptEaT4HoNnjQow==
react-native-windows@0.73.21:
version "0.73.21"
resolved "https://registry.yarnpkg.com/react-native-windows/-/react-native-windows-0.73.21.tgz#c1365fffdb165afc6f952829c135df6913a4b76c"
integrity sha512-CgeUazDE06LIkalMNENRFUNwwRhJTElAevSo70F9fKQtgIhC48Mf+4K4piLovKcmmZ7p7SxXNFoXbN4SS0L6sQ==
dependencies:
"@babel/runtime" "^7.0.0"
"@jest/create-cache-key-function" "^29.6.3"
"@react-native-community/cli" "12.1.1"
"@react-native-community/cli-platform-android" "12.1.1"
"@react-native-community/cli-platform-ios" "12.1.1"
"@react-native-windows/cli" "0.73.1"
"@react-native/assets" "1.0.0"
"@react-native/assets-registry" "^0.73.1"
"@react-native/codegen" "^0.73.2"
"@react-native/community-cli-plugin" "^0.73.10"
"@react-native/gradle-plugin" "^0.73.4"
"@react-native/js-polyfills" "^0.73.1"
"@react-native/normalize-colors" "^0.73.2"
"@react-native/virtualized-lists" "^0.73.3"
"@react-native-community/cli" "12.3.6"
"@react-native-community/cli-platform-android" "12.3.6"
"@react-native-community/cli-platform-ios" "12.3.6"
"@react-native-windows/cli" "0.73.6"
"@react-native/assets-registry" "0.73.1"
"@react-native/codegen" "0.73.3"
"@react-native/community-cli-plugin" "0.73.17"
"@react-native/gradle-plugin" "0.73.4"
"@react-native/js-polyfills" "0.73.1"
"@react-native/normalize-colors" "0.73.2"
"@react-native/virtualized-lists" "0.73.4"
abort-controller "^3.0.0"
anser "^1.4.9"
ansi-regex "^5.0.0"
base64-js "^1.5.1"
chalk "^4.0.0"
deprecated-react-native-prop-types "^5.0.0"
event-target-shim "^5.0.1"
flow-enums-runtime "^0.0.6"
@ -6930,8 +7089,8 @@ react-native-windows@0.73.4:
jest-environment-node "^29.6.3"
jsc-android "^250231.0.0"
memoize-one "^5.0.0"
metro-runtime "^0.80.0"
metro-source-map "^0.80.0"
metro-runtime "^0.80.3"
metro-source-map "^0.80.3"
mkdirp "^0.5.1"
nullthrows "^1.1.1"
pretty-format "^26.5.2"
@ -6947,26 +7106,27 @@ react-native-windows@0.73.4:
ws "^6.2.2"
yargs "^17.6.2"
react-native@0.73.0:
version "0.73.0"
resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.73.0.tgz#553bce5ed4bd3d9f71014127bd687133562c5049"
integrity sha512-ya7wu/L8BeATv2rtXZDToYyD9XuTTDCByi8LvJGr6GKSXcmokkCRMGAiTEZfPkq7+nhVmbasjtoAJDuMRYfudQ==
react-native@0.73.11:
version "0.73.11"
resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.73.11.tgz#4661532efd146e1eab2abb69c252218795837ce5"
integrity sha512-yvQIX+ZXOHMFnhmwZ1fBpRI/53k+iLN8DxVf24Fx4ABU63RGAYfyCZC0/3W+5OUVx4KSIZUv4Tv+/NGIieBOwg==
dependencies:
"@jest/create-cache-key-function" "^29.6.3"
"@react-native-community/cli" "12.1.1"
"@react-native-community/cli-platform-android" "12.1.1"
"@react-native-community/cli-platform-ios" "12.1.1"
"@react-native/assets-registry" "^0.73.1"
"@react-native/codegen" "^0.73.2"
"@react-native/community-cli-plugin" "^0.73.10"
"@react-native/gradle-plugin" "^0.73.4"
"@react-native/js-polyfills" "^0.73.1"
"@react-native/normalize-colors" "^0.73.2"
"@react-native/virtualized-lists" "^0.73.3"
"@react-native-community/cli" "12.3.7"
"@react-native-community/cli-platform-android" "12.3.7"
"@react-native-community/cli-platform-ios" "12.3.7"
"@react-native/assets-registry" "0.73.1"
"@react-native/codegen" "0.73.3"
"@react-native/community-cli-plugin" "0.73.18"
"@react-native/gradle-plugin" "0.73.5"
"@react-native/js-polyfills" "0.73.1"
"@react-native/normalize-colors" "0.73.2"
"@react-native/virtualized-lists" "0.73.4"
abort-controller "^3.0.0"
anser "^1.4.9"
ansi-regex "^5.0.0"
base64-js "^1.5.1"
chalk "^4.0.0"
deprecated-react-native-prop-types "^5.0.0"
event-target-shim "^5.0.1"
flow-enums-runtime "^0.0.6"
@ -6974,8 +7134,8 @@ react-native@0.73.0:
jest-environment-node "^29.6.3"
jsc-android "^250231.0.0"
memoize-one "^5.0.0"
metro-runtime "^0.80.0"
metro-source-map "^0.80.0"
metro-runtime "^0.80.3"
metro-source-map "^0.80.3"
mkdirp "^0.5.1"
nullthrows "^1.1.1"
pretty-format "^26.5.2"