@react-native-community/cli-platform-ios
Version:
This package is part of the [React Native CLI](../../README.md). It contains commands for managing iOS part of React Native app.
41 lines (39 loc) • 1.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.buildOptions = void 0;
const buildOptions = [{
name: '--mode <string>',
description: 'Explicitly set the scheme configuration to use. This option is case sensitive.'
}, {
name: '--scheme <string>',
description: 'Explicitly set Xcode scheme to use'
}, {
name: '--destination <string>',
description: 'Explicitly extend destination e.g. "arch=x86_64"'
}, {
name: '--verbose',
description: 'Do not use xcbeautify or xcpretty even if installed'
}, {
name: '--xcconfig [string]',
description: 'Explicitly set xcconfig to use'
}, {
name: '--buildFolder <string>',
description: 'Location for iOS build artifacts. Corresponds to Xcode\'s "-derivedDataPath".'
}, {
name: '--extra-params <string>',
description: 'Custom params that will be passed to xcodebuild command.',
parse: val => val.split(' ')
}, {
name: '--target <string>',
description: 'Explicitly set Xcode target to use.'
}, {
name: '--interactive',
description: 'Explicitly select which scheme and configuration to use before running a build'
}, {
name: '--force-pods',
description: 'Force CocoaPods installation'
}];
exports.buildOptions = buildOptions;
//# sourceMappingURL=buildOptions.ts.map