Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,6 @@ jobs:
uses: ./.github/actions/setup-toolchain
with:
platform: windows
node-version: 22
- name: Set up react-native@canary
if: ${{ github.event_name == 'schedule' }}
uses: ./.github/actions/setup-react-native
Expand All @@ -561,7 +560,7 @@ jobs:
working-directory: packages/example-windows
- name: Generate Visual Studio solution
run: |
node ../app/windows/app.mjs --msbuildprops WindowsTargetPlatformVersion=$env:WindowsTargetPlatformVersion
node --run prebuild -- --msbuildprops WindowsTargetPlatformVersion=$env:WindowsTargetPlatformVersion
working-directory: packages/example-windows
- name: Test `react-native config`
run: |
Expand Down Expand Up @@ -614,7 +613,6 @@ jobs:
uses: ./.github/actions/setup-toolchain
with:
platform: windows
node-version: 22
- name: Initialize test app
uses: ./.github/actions/init-test-app
with:
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ catalog:
"@babel/core": ^7.25.2
"@babel/preset-env": ^7.25.3
"@react-native-webapis/web-storage": ^0.4.5
"@types/node": ^24.0.0
"@rnx-kit/cli": ^2.0.1
"@rnx-kit/metro-config": ^2.2.4
"@rnx-kit/polyfills": ^0.3.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.8",
"@types/js-yaml": "^4.0.5",
"@types/node": "^24.0.0",
"@types/node": "catalog:",
"eslint-plugin-wdio": "^9.26.0",
"globals": "^16.5.0",
"js-yaml": "^4.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/app/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"@rnx-kit/polyfills": "catalog:",
"@rnx-kit/react-native-template-web": "workspace:*",
"@rnx-kit/tsconfig": "catalog:",
"@types/node": "catalog:",
"@types/react": "~19.2.0",
"@wdio/types": "^9.20.0",
"appium": "^3.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/app/example/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@rnx-kit/tsconfig/tsconfig.json",
"extends": "@rnx-kit/tsconfig/tsconfig.nodenext.json",
"compilerOptions": {
"jsx": "react-native",
"noEmit": true,
Expand Down
1 change: 1 addition & 0 deletions packages/example-windows/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"ci:windows": "rnx-cli run-windows --logging --no-packager --no-launch --no-deploy --msbuildprops UseBundle=false --no-telemetry",
"clean": "yarn workspace react-native-test-app clean",
"ios": "rnx-cli run --platform ios",
"prebuild": "node ../app/windows/app.mjs",
"set-react-version": "yarn workspace react-native-test-app set-react-version",
"start": "rnx-cli start",
"windows": "rnx-cli run-windows --no-packager"
Expand Down
3 changes: 2 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2495,7 +2495,7 @@ __metadata:
"@swc-node/register": "npm:^1.11.1"
"@swc/core": "npm:^1.15.8"
"@types/js-yaml": "npm:^4.0.5"
"@types/node": "npm:^24.0.0"
"@types/node": "catalog:"
eslint-plugin-wdio: "npm:^9.26.0"
globals: "npm:^16.5.0"
js-yaml: "npm:^4.1.0"
Expand Down Expand Up @@ -8390,6 +8390,7 @@ __metadata:
"@rnx-kit/polyfills": "catalog:"
"@rnx-kit/react-native-template-web": "workspace:*"
"@rnx-kit/tsconfig": "catalog:"
"@types/node": "catalog:"
"@types/react": "npm:~19.2.0"
"@wdio/types": "npm:^9.20.0"
appium: "npm:^3.1.1"
Expand Down
Loading