UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

9 lines (8 loc) 547 B
/** * This function normalizes the options passed in to the Nx and returns an array of strings that can be passed to the React Native CLI. * @param options Nx options * @param optionKeysToIgnore Keys to ignore * @param optionKeysInCamelName Keys that are in camel case. Most react native cli options are in kebab case, but some are in camel case. * @returns options that can be passed to the React Native CLI */ export declare function getCliOptions<T>(options: T, optionKeysToIgnore?: string[], optionKeysInCamelName?: string[]): string[];