Skip to content

Commit

Permalink
fix: declare support for 0.74
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Feb 28, 2024
1 parent 15dd235 commit 4cb7371
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"peerDependencies": {
"@expo/config-plugins": ">=5.0",
"react": "17.0.1 - 18.2",
"react-native": "^0.0.0-0 || 0.66 - 0.73 || 1000.0.0",
"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"
},
Expand Down Expand Up @@ -147,7 +147,7 @@
"packageManager": "yarn@4.1.0",
"resolutions": {
"@appium/docutils": "link:./example",
"@appium/support/@types/semver": "^7.5.6",
"@appium/support/@types/semver": "^7.5.7",
"@expo/config-plugins/glob": "^7.1.6",
"@expo/json-file/@babel/code-frame": "^7.10.4",
"@microsoft/eslint-plugin-sdl/eslint-plugin-react": "^7.33.0",
Expand All @@ -159,7 +159,7 @@
"@react-native/community-cli-plugin/@react-native-community/cli-server-api": "^12.3.0",
"@react-native/community-cli-plugin/@react-native-community/cli-tools": "^12.3.0",
"@semantic-release/npm/npm": "link:./example",
"appium/@types/semver": "^7.5.6",
"appium/@types/semver": "^7.5.7",
"appium/yaml": "^2.3.4",
"body-parser": "~1.20.2",
"bplist-parser": "~0.3.2",
Expand Down
4 changes: 2 additions & 2 deletions test/configure/getPlatformPackage.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ describe("getPlatformPackage()", () => {
it("returns dependency when target version is inside range", (t) => {
t.mock.method(console, "warn", () => null);

for (const targetVersion of ["0.0.0-canary", "^0.0.0-canary"]) {
for (const targetVersion of ["0.74.0-nightly", "^0.74.0-nightly"]) {
const pkg = getPlatformPackage(name, targetVersion);
deepEqual(pkg, { [name]: "^0.0.0" });
deepEqual(pkg, { [name]: "^0.74.0" });
}

for (const targetVersion of ["0.68", "0.68.2", "^0.68", "^0.68.2"]) {
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3869,7 +3869,7 @@ __metadata:
languageName: node
linkType: hard

"@types/semver@npm:^7.3.6, @types/semver@npm:^7.5.0, @types/semver@npm:^7.5.6":
"@types/semver@npm:^7.3.6, @types/semver@npm:^7.5.0, @types/semver@npm:^7.5.7":
version: 7.5.7
resolution: "@types/semver@npm:7.5.7"
checksum: 10c0/fb72d8b86a7779650f14ae89542f1da2ab624adb8188d98754b1d29a2fe3d41f0348bf9435b60ad145df1812fd2a09b3256779aa23b532c199f3dee59619a1eb
Expand Down Expand Up @@ -12124,7 +12124,7 @@ __metadata:
peerDependencies:
"@expo/config-plugins": ">=5.0"
react: 17.0.1 - 18.2
react-native: ^0.0.0-0 || 0.66 - 0.73 || 1000.0.0
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
peerDependenciesMeta:
Expand Down

0 comments on commit 4cb7371

Please sign in to comment.