Skip to content

Commit

Permalink
fix(windows): declare support for 0.74 (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Apr 16, 2024
1 parent 64fe4f1 commit 59d1f1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"react": "17.0.1 - 18.2",
"react-native": "0.66 - 0.74 || >=0.75.0-0 <0.75.0",
"react-native-macos": "^0.0.0-0 || 0.66 || 0.68 || 0.71 - 0.73",
"react-native-windows": "^0.0.0-0 || 0.66 - 0.73"
"react-native-windows": "^0.0.0-0 || 0.66 - 0.74"
},
"peerDependenciesMeta": {
"@callstack/react-native-visionos": {
Expand Down
5 changes: 4 additions & 1 deletion test/android-test-app/test-app-util.test.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @ts-check
import { equal, match } from "node:assert/strict";
import * as os from "node:os";
import { after, describe, it } from "node:test";
import { toVersionNumber, v } from "../../scripts/helpers.js";
import {
Expand All @@ -8,7 +9,9 @@ import {
runGradleWithProject,
} from "./gradle.mjs";

describe("test-app-util.gradle", () => {
// TODO: These tests are broken on GitHub Actions (Windows) as of 20240414.1.0
// https://github.com/actions/runner-images/commit/16c64c111cb6372bf8949332d275b74c87d33075
describe("test-app-util.gradle", { skip: os.platform() === "win32" }, () => {
const buildGradle = [
"buildscript {",
' def androidTestAppDir = "node_modules/react-native-test-app/android"',
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12208,7 +12208,7 @@ __metadata:
react: 17.0.1 - 18.2
react-native: 0.66 - 0.74 || >=0.75.0-0 <0.75.0
react-native-macos: ^0.0.0-0 || 0.66 || 0.68 || 0.71 - 0.73
react-native-windows: ^0.0.0-0 || 0.66 - 0.73
react-native-windows: ^0.0.0-0 || 0.66 - 0.74
peerDependenciesMeta:
"@callstack/react-native-visionos":
optional: true
Expand Down

0 comments on commit 59d1f1a

Please sign in to comment.