Configure Integration
React Native Integrate now supports a configuration file system that allows you to pre-define options for packages to use while implementing their changes.
Most of the time you won't need this because options can be entered through prompts.
However, in some cases complex inputs are needed that can be defined here.
Configuration File
Create an integrate.config.js
file in your project root to configure React Native Integrate. The configuration file should export an object that matches the IntegrateConfig
interface.
// integrate.config.js
module.exports = {
plugins: [
// Plugin configurations
['plugin-with-config', {
// Plugin specific configuration
option1: 'value1',
option2: 'value2'
}]
]
};
Configuration Options
Plugins
The plugins
array allows you to specify which plugins to use and their configurations:
plugins: [
['my-plugin', {
// Plugin specific configuration options
config1: 'value1'
}]
]
Using Configuration in Your Project
The configuration file is automatically loaded when running react-native-integrate commands. The system will:
- Look for
integrate.config.js
in your project root - Load and validate the configuration
- Apply plugin configurations as needed
Plugin Development
If you're developing an integration using complex options, you can access the configuration in two ways:
- In JavaScript/TypeScript integration scripts:
// Access configuration in your integration script
import { getConfig } from '@react-native-integrate/core';
const pluginConfig = getConfig();
- In integration YAML files:
# Access configuration in your integration.yml
steps:
- when:
config:
someOption: true
task: someTask
# This step runs only when someOption is true in the config
Error Handling
If there are issues with your configuration file:
- Syntax errors will be reported with detailed error messages
- Invalid configuration will trigger appropriate warnings
- Missing configuration file is handled gracefully - the system will use default settings
Best Practices
- Keep your configuration file in the project root
- Document plugin-specific configuration options
- Version control your configuration file
- Use TypeScript for better type checking in your configuration file