@react-native/core-cli-utils
Version:
React Native CLI library for Frameworks to build on
28 lines (26 loc) • 562 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.common = exports.apple = exports.android = exports.all = void 0;
const android = (exports.android = {
ANDROID_NDK: ">= 23.x",
ANDROID_SDK: ">= 33.x",
});
const apple = (exports.apple = {
COCOAPODS: ">= 1.10.0",
XCODE: ">= 12.x",
});
const common = (exports.common = {
BUN: ">= 1.0.0",
JAVA: ">= 17 <= 20",
NODE_JS: ">= 18",
NPM: ">= 4.x",
RUBY: ">= 2.6.10",
YARN: ">= 1.10.x",
});
const all = (exports.all = {
...apple,
...android,
...common,
});