-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core-cli-utils - Added version information
Summary: Using version information previously housed in react-native-communtiy/cli Changelog: [Internal] Reviewed By: cortinico Differential Revision: D55960009 fbshipit-source-id: 38f8b2310942a9337a7b64b51a87ae629d9bbbaf
- Loading branch information
1 parent
e14e6ce
commit affadb6
Showing
4 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow strict-local | ||
* @format | ||
* @oncall react_native | ||
*/ | ||
|
||
// Usage: | ||
// | ||
// > const semver = require('semver'); | ||
// > semver.satisfies(process.env.ANDROID_SDK, android.ANDROID_SDK); | ||
// true | ||
// | ||
// The version of @react-native/core-cli-utils matches a particular version | ||
// of react-native. For example: | ||
// | ||
// > npm info @react-native/core-cli-util@latest --json | jq '.version' | ||
// > "0.75.0" | ||
// | ||
// Means that: | ||
// > require('@react-native/core-cli-utils/versions.js').apple.XCODE | ||
// > ">= 12.x" | ||
// | ||
// For react-native@0.75.0 you have to have a version of XCode >= 12 | ||
|
||
export const android = { | ||
ANDROID_NDK: '>= 23.x', | ||
ANDROID_SDK: '>= 33.x', | ||
}; | ||
|
||
export const apple = { | ||
COCOAPODS: '>= 1.10.0', | ||
XCODE: '>= 12.x', | ||
}; | ||
|
||
export const common = { | ||
BUN: '>= 1.0.0', | ||
JAVA: '>= 17 <= 20', | ||
NODE_JS: '>= 18', | ||
NPM: '>= 4.x', | ||
RUBY: '>= 2.6.10', | ||
YARN: '>= 1.10.x', | ||
}; | ||
|
||
export const all = { | ||
...apple, | ||
...android, | ||
...common, | ||
}; |