Skip to main content

align-deps

@rnx-kit/align-deps is a tool for managing dependencies within a repository and across many repositories. It ensures that your packages are using compatible dependencies and versions, given a set of requirements, based on customizable presets with known good packages and versions that are curated from real apps. You can even bring your own presets that are tailored to your needs.

Note that this tool was previously known as dep-check, but it was renamed to avoid name clashes and other reasons. For more details, you can read the RFC: dep-check v2.

If you want to learn how align-deps is used at Microsoft, and see a demo of how it works in a monorepo, you can watch the "Improve all the repos – exploring Microsoft’s DevExp" talk by @kelset and @tido64 at React Native Europe 2021.

To learn more about how align-deps works, please read the design document.

Installation

yarn add @rnx-kit/align-deps --dev

or if you're using npm

npm add --save-dev @rnx-kit/align-deps

You can also run this tool using npx

npx @rnx-kit/align-deps@latest [options] [packages...]

but note that profiles may change between each run. We therefore don't recommend that you use npx if you intend to run this tool on CI or as part of post-install. It should be fine if you run it manually.

Usage

yarn rnx-align-deps [options] [packages...]

Listing paths to packages that should be checked is optional. If omitted, align-deps will look for the closest package.json using Node module resolution. If the target package is a root package defining workspaces, they will all be included.

Examples:

  • Ensure dependencies are compatible with react-native 0.70 without a config:

    yarn rnx-align-deps --requirements react-native@0.70
  • Initialize a config for your app (or library):

    yarn rnx-align-deps --init app
    # or specify `library` for a library
  • Apply changes suggested by align-deps:

    yarn rnx-align-deps --write
  • Interactively update supported react-native versions (or bump version used for development):

    yarn rnx-align-deps --set-version

--exclude-packages

Comma-separated list of package names to exclude from inspection.

Note

--exclude-packages will only exclude packages that do not have a configuration. Packages that have a configuration, will still be checked.

--init <app | library>

When integrating @rnx-kit/align-deps for the first time, it may be a cumbersome to manually add all capabilities yourself. You can run this tool with --init, and it will try to add a sensible configuration based on what is currently defined in the specified package.json.

--loose

Determines how strict the React Native version requirement should be. Useful for apps that depend on a newer React Native version than their dependencies declare support for.

Default: false

--no-unmanaged

Whether unmanaged capabilities should be treated as errors.

Default: false

--presets

Comma-separated list of presets. This can be names to built-in presets, or paths to external presets. Paths can point to a JSON file, a .js file, or a module name. The module must default export an object similar to the one below:

module.exports = {
0.69: {
"my-capability": {
name: "my-module",
version: "1.0.0",
},
},
"0.70": {
"my-capability": {
name: "my-module",
version: "1.1.0",
},
},
};

For a more complete example, have a look at the default preset.

See Presets for more details.

Note

This flag is only be considered when a package is not configured. The presets specified in the configuration will always take precedence.

--requirements

Comma-separated list of requirements to apply if a package is not configured.

For example, --requirements react-native@0.70 will make sure your packages are compatible with react-native 0.70.

See Requirements for more details.

--set-version

Sets production and development react-native version requirements for any configured package. The value should be a comma-separated list of react-native versions to set. The first number specifies the development version. For example, --set-version 0.70,0.69 will set the following values:

{
"rnx-kit": {
"alignDeps": {
"requirements": {
"development": ["react-native@0.70"],
"production": ["react-native@0.69 || 0.70"]
}
}
}
}

If the version numbers are omitted, an interactive prompt will appear.

Note

A rnx-align-deps --write run will be invoked right after changes have been made. As such, this flag will fail if changes are needed before making any modifications.

--verbose

Specify to increase logging verbosity.

Default: false

--write

Writes all proposed changes to the specified package.json.

Default: false

Configure

While @rnx-kit/align-deps can ensure your dependencies are aligned without a configuration, you can only get the more advanced features, such as dependencies section re-ordering (dependencies vs peerDependencies) and transitive dependency detection (A -> B -> C), by adding a configuration. Your configuration must be in an "rnx-kit" section of your package.json, and have the following shapes depending on the package type:

export type AppConfig = {
kitType: "app";
alignDeps: {
/**
* Presets to use for aligning dependencies.
* @default ["microsoft/react-native"]
*/
presets?: string[];

/**
* Requirements for this package, e.g.
* `react-native@>=0.70`.
*/
requirements: string[];

/**
* Capabilities used by the kit.
*/
capabilities: Capability[];
};
};

export type LibraryConfig = {
kitType: "library";
alignDeps: {
/**
* Presets to use for aligning dependencies.
* @default ["microsoft/react-native"]
*/
presets?: string[];

/**
* Requirements for this package, e.g.
* `react-native@>=0.70`. `development` is for
* package authors, and `production` is for
* consumers.
*/
requirements: { development: string[]; production: string[] };

/**
* Capabilities used by the kit.
*/
capabilities: Capability[];
};
};

For example, this is a config for a library that supports react-native 0.69 and 0.70, and uses 0.70 internally:

{
"name": "useful-library",
"version": "1.0",
...
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"requirements": {
"development": ["react-native@0.70"],
"production": ["react-native@0.69 || 0.70"]
}
"capabilities": [
"core-android",
"core-ios"
]
}
}
}

Capabilities

The following table contains the currently supported capabilities and what they resolve to:

Capabilities Table
Capability0.740.730.720.710.700.690.680.670.660.650.640.630.620.61
corereact-native@^0.74.0react-native@^0.73.0react-native@^0.72.0react-native@^0.71.0react-native@^0.70.0react-native@^0.69.0react-native@^0.68.0react-native@^0.67.0react-native@^0.66.0react-native@^0.65.0react-native@^0.64.2react-native@^0.63.2react-native@^0.62.3react-native@^0.61.5
core-androidreact-native@^0.74.0react-native@^0.73.0react-native@^0.72.0react-native@^0.71.0react-native@^0.70.0react-native@^0.69.0react-native@^0.68.0react-native@^0.67.0react-native@^0.66.0react-native@^0.65.0react-native@^0.64.2react-native@^0.63.2react-native@^0.62.3react-native@^0.61.5
core-iosreact-native@^0.74.0react-native@^0.73.0react-native@^0.72.0react-native@^0.71.0react-native@^0.70.0react-native@^0.69.0react-native@^0.68.0react-native@^0.67.0react-native@^0.66.0react-native@^0.65.0react-native@^0.64.2react-native@^0.63.2react-native@^0.62.3react-native@^0.61.5
core-macosreact-native-macos@^0.74.0react-native-macos@^0.73.0react-native-macos@^0.72.0react-native-macos@^0.71.0react-native-macos@^0.70.0react-native-macos@^0.69.0react-native-macos@^0.68.0react-native-macos@^0.67.0react-native-macos@^0.66.0react-native-macos@^0.65.0react-native-macos@^0.64.0react-native-macos@^0.63.0react-native-macos@^0.62.0react-native-macos@^0.61.0
core-windowsreact-native-windows@^0.74.0react-native-windows@^0.73.0react-native-windows@^0.72.0react-native-windows@^0.71.0react-native-windows@^0.70.0react-native-windows@^0.69.0react-native-windows@^0.68.0react-native-windows@^0.67.0react-native-windows@^0.66.0react-native-windows@^0.65.0react-native-windows@^0.64.0react-native-windows@^0.63.0react-native-windows@^0.62.0react-native-windows@^0.61.0
animationreact-native-reanimated@^3.6.0react-native-reanimated@^3.6.0react-native-reanimated@^3.3.0react-native-reanimated@^2.14.1react-native-reanimated@^2.10.0react-native-reanimated@^2.9.0react-native-reanimated@^2.5.0react-native-reanimated@^2.2.4react-native-reanimated@^2.2.3react-native-reanimated@^2.2.1react-native-reanimated@^2.1.0react-native-reanimated@^1.13.3react-native-reanimated@^1.13.3react-native-reanimated@^1.13.3
babel-preset-react-native@react-native/babel-preset@^0.74.0@react-native/babel-preset@^0.73.0metro-react-native-babel-preset@^0.76.5metro-react-native-babel-preset@^0.73.7metro-react-native-babel-preset@^0.72.1metro-react-native-babel-preset@^0.70.3metro-react-native-babel-preset@^0.67.0metro-react-native-babel-preset@^0.66.2metro-react-native-babel-preset@^0.66.2metro-react-native-babel-preset@^0.66.0metro-react-native-babel-preset@^0.64.0metro-react-native-babel-preset@^0.59.0metro-react-native-babel-preset@^0.58.0metro-react-native-babel-preset@^0.56.0
base64react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1react-native-base64@^0.2.1
checkbox@react-native-community/checkbox@^0.5.15@react-native-community/checkbox@^0.5.15@react-native-community/checkbox@^0.5.15@react-native-community/checkbox@^0.5.15@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.8@react-native-community/checkbox@^0.5.7@react-native-community/checkbox@^0.5.7@react-native-community/checkbox@^0.5.7
clipboard@react-native-clipboard/clipboard@^1.14.0@react-native-clipboard/clipboard@^1.14.0@react-native-clipboard/clipboard@^1.10.0@react-native-clipboard/clipboard@^1.10.0@react-native-clipboard/clipboard@^1.10.0@react-native-clipboard/clipboard@^1.10.0@react-native-clipboard/clipboard@^1.10.0@react-native-clipboard/clipboard@^1.9.0@react-native-clipboard/clipboard@^1.9.0@react-native-clipboard/clipboard@^1.9.0@react-native-clipboard/clipboard@^1.8.3@react-native-community/clipboard@^1.5.1@react-native-community/clipboard@^1.5.1@react-native-community/clipboard@^1.5.1
community/cli@react-native-community/cli@^13.6.4@react-native-community/cli@^12.1.1@react-native-community/cli@^11.3.2@react-native-community/cli@^10.0.0@react-native-community/cli@^9.0.0@react-native-community/cli@^8.0.4@react-native-community/cli@^7.0.3@react-native-community/cli@^6.0.0@react-native-community/cli@^6.0.0@react-native-community/cli@^6.0.0@react-native-community/cli@^5.0.1@react-native-community/cli@^4.10.0@react-native-community/cli@^4.5.1@react-native-community/cli@^3.0.0
community/cli-android@react-native-community/cli-platform-android@^13.6.4@react-native-community/cli-platform-android@^12.1.1@react-native-community/cli-platform-android@^11.3.2@react-native-community/cli-platform-android@^10.0.0@react-native-community/cli-platform-android@^9.0.0@react-native-community/cli-platform-android@^8.0.4@react-native-community/cli-platform-android@^7.0.1@react-native-community/cli-platform-android@^6.0.0@react-native-community/cli-platform-android@^6.0.0@react-native-community/cli-platform-android@^6.0.0@react-native-community/cli-platform-android@^5.0.1@react-native-community/cli-platform-android@^4.10.0@react-native-community/cli-platform-android@^4.5.1@react-native-community/cli-platform-android@^3.0.0
community/cli-ios@react-native-community/cli-platform-ios@^13.6.4@react-native-community/cli-platform-ios@^12.1.1@react-native-community/cli-platform-ios@^11.3.2@react-native-community/cli-platform-ios@^10.0.0@react-native-community/cli-platform-ios@^9.0.0@react-native-community/cli-platform-ios@^8.0.4@react-native-community/cli-platform-ios@^7.0.1@react-native-community/cli-platform-ios@^6.0.0@react-native-community/cli-platform-ios@^6.0.0@react-native-community/cli-platform-ios@^6.0.0@react-native-community/cli-platform-ios@^5.0.1@react-native-community/cli-platform-ios@^4.10.0@react-native-community/cli-platform-ios@^4.5.0@react-native-community/cli-platform-ios@^3.0.0
core/metro-config@react-native/metro-config@^0.74.0@react-native/metro-config@^0.73.0@react-native/metro-config@^0.72.0-----------
core/testingMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-rendererMeta package for installing core, jest, react-test-renderer
datetime-picker@react-native-community/datetimepicker@^7.7.0@react-native-community/datetimepicker@^7.7.0@react-native-community/datetimepicker@^7.6.2@react-native-community/datetimepicker@^6.4.2@react-native-community/datetimepicker@^6.3.3@react-native-community/datetimepicker@^6.0.2@react-native-community/datetimepicker@^6.0.2@react-native-community/datetimepicker@^3.5.2@react-native-community/datetimepicker@^3.5.2@react-native-community/datetimepicker@^3.5.2@react-native-community/datetimepicker@^3.4.6@react-native-community/datetimepicker@^3.0.9@react-native-community/datetimepicker@^3.0.9@react-native-community/datetimepicker@^3.0.9
filesystemreact-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.18.0react-native-fs@^2.17.0react-native-fs@^2.16.6react-native-fs@^2.16.6react-native-fs@^2.16.6
floating-actionreact-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.22.0react-native-floating-action@^1.21.0react-native-floating-action@^1.21.0react-native-floating-action@^1.18.0react-native-floating-action@^1.18.0
gesturesreact-native-gesture-handler@^2.14.0react-native-gesture-handler@^2.14.0react-native-gesture-handler@^2.12.0react-native-gesture-handler@^2.9.0react-native-gesture-handler@^2.6.0react-native-gesture-handler@^2.5.0react-native-gesture-handler@^2.3.2react-native-gesture-handler@^1.10.3react-native-gesture-handler@^1.10.3react-native-gesture-handler@^1.10.3react-native-gesture-handler@^1.10.3react-native-gesture-handler@^1.10.3react-native-gesture-handler@^1.9.0react-native-gesture-handler@^1.9.0
hermes-----hermes-engine@~0.11.0hermes-engine@~0.11.0hermes-engine@~0.9.0hermes-engine@~0.9.0hermes-engine@~0.8.1hermes-engine@~0.7.0hermes-engine@~0.5.0hermes-engine@~0.4.0hermes-engine@^0.2.1
hooks@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.8.0@react-native-community/hooks@^2.6.0@react-native-community/hooks@^2.6.0@react-native-community/hooks@^2.6.0@react-native-community/hooks@^2.6.0
htmlreact-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^6.1.0react-native-render-html@^5.1.1react-native-render-html@^5.1.1react-native-render-html@^5.1.0react-native-render-html@^5.1.0react-native-render-html@^5.1.0
jestjest@^29.2.1jest@^29.2.1jest@^29.2.1jest@^29.2.1jest@^26.6.3jest@^26.6.3jest@^26.6.3jest@^26.6.3jest@^26.6.3jest@^26.6.3jest@^26.5.2jest@^24.9.0jest@^24.8.0jest@^24.8.0
lazy-index@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7@rnx-kit/react-native-lazy-index@^2.1.7react-native-lazy-index@^2.1.1react-native-lazy-index@^2.1.1react-native-lazy-index@^2.1.1react-native-lazy-index@^2.1.1react-native-lazy-index@^2.1.1
masked-view@react-native-masked-view/masked-view@^0.3.0@react-native-masked-view/masked-view@^0.3.0@react-native-masked-view/masked-view@^0.2.9@react-native-masked-view/masked-view@^0.2.9@react-native-masked-view/masked-view@^0.2.7@react-native-masked-view/masked-view@^0.2.7@react-native-masked-view/masked-view@^0.2.6@react-native-masked-view/masked-view@^0.2.6@react-native-masked-view/masked-view@^0.2.6@react-native-masked-view/masked-view@^0.2.6@react-native-masked-view/masked-view@^0.2.4@react-native-masked-view/masked-view@^0.2.4@react-native-masked-view/masked-view@^0.2.4@react-native-masked-view/masked-view@^0.2.4
metrometro@^0.80.3metro@^0.80.0metro@^0.76.5metro@^0.73.7metro@^0.72.1metro@^0.70.1metro@^0.67.0metro@^0.66.2metro@^0.66.2metro@^0.66.0metro@^0.64.0metro@^0.59.0metro@^0.58.0metro@^0.56.0
metro-configmetro-config@^0.80.3metro-config@^0.80.0metro-config@^0.76.5metro-config@^0.73.7metro-config@^0.72.1metro-config@^0.70.1metro-config@^0.67.0metro-config@^0.66.2metro-config@^0.66.2metro-config@^0.66.0metro-config@^0.64.0metro-config@^0.59.0metro-config@^0.58.0metro-config@^0.56.0
metro-coremetro-core@^0.80.3metro-core@^0.80.0metro-core@^0.76.5metro-core@^0.73.7metro-core@^0.72.1metro-core@^0.70.1metro-core@^0.67.0metro-core@^0.66.2metro-core@^0.66.2metro-core@^0.66.0metro-core@^0.64.0metro-core@^0.59.0metro-core@^0.58.0metro-core@^0.56.0
metro-react-native-babel-transformer@react-native/metro-babel-transformer@^0.74.0@react-native/metro-babel-transformer@^0.73.0metro-react-native-babel-transformer@^0.76.5metro-react-native-babel-transformer@^0.73.7metro-react-native-babel-transformer@^0.72.1metro-react-native-babel-transformer@^0.70.1metro-react-native-babel-transformer@^0.67.0metro-react-native-babel-transformer@^0.66.2metro-react-native-babel-transformer@^0.66.2metro-react-native-babel-transformer@^0.66.0metro-react-native-babel-transformer@^0.64.0metro-react-native-babel-transformer@^0.59.0metro-react-native-babel-transformer@^0.58.0metro-react-native-babel-transformer@^0.56.0
metro-resolvermetro-resolver@^0.80.3metro-resolver@^0.80.0metro-resolver@^0.76.5metro-resolver@^0.73.7metro-resolver@^0.72.1metro-resolver@^0.70.1metro-resolver@^0.67.0metro-resolver@^0.66.2metro-resolver@^0.66.2metro-resolver@^0.66.0metro-resolver@^0.64.0metro-resolver@^0.59.0metro-resolver@^0.58.0metro-resolver@^0.56.0
metro-runtimemetro-runtime@^0.80.3metro-runtime@^0.80.0metro-runtime@^0.76.5metro-runtime@^0.73.7metro-runtime@^0.72.1metro-runtime@^0.70.1metro-runtime@^0.67.0metro-runtime@^0.66.2metro-runtime@^0.66.2metro-runtime@^0.66.0metro-runtime@^0.64.0metro-runtime@^0.59.0metro-runtime@^0.58.0metro-runtime@^0.56.0
modalreact-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^13.0.0react-native-modal@^11.10.0react-native-modal@^11.5.6react-native-modal@^11.5.6react-native-modal@^11.5.6
navigation/native@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^6.0.8@react-navigation/native@^5.9.8@react-navigation/native@^5.9.8@react-navigation/native@^5.9.4@react-navigation/native@^5.7.6@react-navigation/native@^5.7.6
navigation/stack@react-navigation/stack@^6.3.21@react-navigation/stack@^6.3.21@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^6.2.0@react-navigation/stack@^5.14.9@react-navigation/stack@^5.14.9@react-navigation/stack@^5.14.4@react-navigation/stack@^5.9.3@react-navigation/stack@^5.9.3
netinfo@react-native-community/netinfo@^11.3.1@react-native-community/netinfo@^11.3.0@react-native-community/netinfo@^9.0.0@react-native-community/netinfo@^9.0.0@react-native-community/netinfo@^9.0.0@react-native-community/netinfo@^8.0.0@react-native-community/netinfo@^7.0.0@react-native-community/netinfo@^7.0.0@react-native-community/netinfo@^7.0.0@react-native-community/netinfo@^7.0.0@react-native-community/netinfo@^6.0.2@react-native-community/netinfo@^5.9.10@react-native-community/netinfo@^5.9.10@react-native-community/netinfo@^5.7.1
popoverreact-native-popover-view@^5.0.0react-native-popover-view@^5.0.0react-native-popover-view@^5.0.0react-native-popover-view@^5.0.0react-native-popover-view@^5.0.0react-native-popover-view@^5.0.0react-native-popover-view@^4.0.3react-native-popover-view@^4.0.3react-native-popover-view@^4.0.3react-native-popover-view@^4.0.3react-native-popover-view@^4.0.3react-native-popover-view@^3.1.1react-native-popover-view@^3.1.1react-native-popover-view@^3.1.1
reactreact@18.2.0react@18.2.0react@18.2.0react@18.2.0react@18.1.0react@18.0.0react@17.0.2react@17.0.2react@17.0.2react@17.0.2react@17.0.1react@16.13.1react@16.11.0react@16.9.0
react-domreact-dom@^18.2.0react-dom@^18.2.0react-dom@^18.2.0react-dom@^18.2.0react-dom@^18.1.0react-dom@^18.0.0react-dom@17.0.2react-dom@17.0.2react-dom@17.0.2react-dom@17.0.2react-dom@17.0.1react-dom@16.13.1react-dom@16.11.0react-dom@16.9.0
react-test-rendererreact-test-renderer@18.2.0react-test-renderer@18.2.0react-test-renderer@18.2.0react-test-renderer@18.2.0react-test-renderer@18.1.0react-test-renderer@18.0.0react-test-renderer@17.0.2react-test-renderer@17.0.2react-test-renderer@17.0.2react-test-renderer@17.0.2react-test-renderer@17.0.1react-test-renderer@16.13.1react-test-renderer@16.11.0react-test-renderer@16.9.0
safe-areareact-native-safe-area-context@^4.8.2react-native-safe-area-context@^4.8.2react-native-safe-area-context@>=4.5.3 <4.8react-native-safe-area-context@^4.5.1react-native-safe-area-context@^4.4.1react-native-safe-area-context@^4.3.1react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.2.0react-native-safe-area-context@^3.1.9react-native-safe-area-context@^3.1.9
screensreact-native-screens@^3.31.0react-native-screens@^3.28.0react-native-screens@>=3.21.0 <3.28.0react-native-screens@^3.19.0react-native-screens@^3.18.2react-native-screens@^3.14.1react-native-screens@^3.13.1react-native-screens@^3.9.0react-native-screens@^3.9.0react-native-screens@^3.7.0react-native-screens@^3.1.1react-native-screens@^2.18.1react-native-screens@^2.10.1react-native-screens@^2.10.1
shimmerreact-native-shimmer@^0.6.0react-native-shimmer@^0.6.0react-native-shimmer@^0.6.0react-native-shimmer@^0.6.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0react-native-shimmer@^0.5.0
sqlitereact-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^6.0.1react-native-sqlite-storage@^5.0.0react-native-sqlite-storage@^5.0.0react-native-sqlite-storage@^5.0.0react-native-sqlite-storage@^5.0.0react-native-sqlite-storage@^5.0.0react-native-sqlite-storage@^3.3.11react-native-sqlite-storage@^3.3.11react-native-sqlite-storage@^3.3.11
storage@react-native-async-storage/async-storage@^1.22.3@react-native-async-storage/async-storage@^1.22.0@react-native-async-storage/async-storage@^1.18.2@react-native-async-storage/async-storage@^1.17.11@react-native-async-storage/async-storage@^1.17.10@react-native-async-storage/async-storage@^1.17.7@react-native-async-storage/async-storage@^1.17.3@react-native-async-storage/async-storage@^1.15.16@react-native-async-storage/async-storage@^1.15.9@react-native-async-storage/async-storage@^1.15.8@react-native-async-storage/async-storage@^1.15.8@react-native-community/async-storage@^1.12.1@react-native-community/async-storage@^1.12.1@react-native-community/async-storage@^1.12.1
svgreact-native-svg@^15.2.0react-native-svg@^15.0.0react-native-svg@^13.14.0react-native-svg@^13.14.0react-native-svg@^12.3.0react-native-svg@^12.3.0react-native-svg@^12.3.0react-native-svg@^12.1.1react-native-svg@^12.1.1react-native-svg@^12.1.1react-native-svg@^12.1.1react-native-svg@^12.1.1react-native-svg@^12.1.1react-native-svg@^12.1.1
test-appreact-native-test-app@^3.5.0react-native-test-app@^2.5.34react-native-test-app@^2.5.5react-native-test-app@^2.2.1react-native-test-app@^1.6.9react-native-test-app@^1.3.10react-native-test-app@^1.3.5react-native-test-app@^1.1.7react-native-test-app@^1.0.6react-native-test-app@^0.11.4react-native-test-app@^0.11.4react-native-test-app@^0.11.4react-native-test-app@^0.11.4react-native-test-app@^0.11.4
webviewreact-native-webview@^13.8.4react-native-webview@^13.7.2react-native-webview@^13.2.2react-native-webview@^12.0.2react-native-webview@^11.23.0react-native-webview@^11.23.0react-native-webview@^11.22.6react-native-webview@^11.13.0react-native-webview@^11.13.0react-native-webview@^11.13.0react-native-webview@^11.4.2react-native-webview@^11.4.2react-native-webview@^11.0.3react-native-webview@^11.0.3

To add new capabilities, first add it to packages/config/src/kitConfig.ts, then update the preset. For an example, have a look at how the hermes capability was added.

If you're looking to update capabilities to a more recent version, run yarn update-profile to help determine whether we need to bump any packages.

Presets

A profile is a list of capabilities that map to specific versions of packages. A preset is a collection of such profiles. It can be a JSON file, or a JS file that default exports it. Presets are consumed via the presets key in your configuration, or the --presets flag.

Extending Built-in Presets

The built-in preset, microsoft/react-native, contains a profile for every supported version of react-native. The profiles are named after every minor release, e.g. 0.69 or 0.70.

To add a new capability, e.g. my-capability, to the built-in profiles 0.69 and 0.70, create a custom preset like below:

// my-preset/index.js
module.exports = {
0.69: {
"my-capability": {
name: "my-module",
version: "1.0.0",
},
},
"0.70": {
"my-capability": {
name: "my-module",
version: "1.1.0",
},
},
};

Then add it to your configuration:

 {
"name": "my-package",
...
"rnx-kit": {
"alignDeps": {
"presets": [
"microsoft/react-native",
+ "my-preset"
],
"requirements": ["react-native@0.70"],
"capabilities": [
...
]
}
}
}

Or if you need to align unconfigured packages, specify --presets microsoft/react-native,my-preset.

Make sure that microsoft/react-native is declared before your custom preset. This will tell align-deps to append capabilities when the profile names match.

You can also use this feature to override capabilities. For instance:

// my-preset/index.js
module.exports = {
"0.70": {
core: {
name: "react-native",
version: "^0.70.3-myCustomFork.1",
},
},
};

With this preset, core will be resolved to your custom fork of react-native instead of the official version.

Note that profile names are only needed when you want to extend or override presets. Otherwise, you can name your profiles whatever you want.

For a complete example of a preset, have a look at microsoft/react-native.

Custom Capabilities

Normally, a capability resolves to a version of a package. For instance, core is a capability that resolves to react-native:

{
"core": {
name: "react-native",
version: "0.0.0",
},
}

A capability can depend on other capabilities. For example, we can ensure that react-native gets installed along with react-native-windows by declaring that core-windows depends on core:

{
"core-windows": {
name: "react-native-windows",
version: "0.0.0",
capabilities: ["core"],
},
}

You can also create capabilities that don't resolve to a package, but to a list of capabilities instead:

{
"core/all": {
name: "#meta",
capabilities: [
"core-android",
"core-ios",
"core-macos",
"core-windows",
],
},
}

We call these meta capabilities. To make it easier to identify them (both for humans and machines), the name field must be set to #meta, and the capabilities field must be a non-empty array of other capabilities. The version field is no longer used and can be dropped. To use a meta capability in your rnx-kit configuration, there's nothing specific to be done — for instance:

 {
"name": "my-package",
...
"rnx-kit": {
"alignDeps": {
"presets": ["microsoft/react-native", "my-preset"],
"requirements": ["react-native@0.70"],
"capabilities": [
+ "core/all"
]
}
}
}

Requirements

Requirements are what determines which profiles should be used. This is how it roughly works:

  • The list of presets are loaded and merged into a giant preset
  • For each profile in the merged preset, check whether they fulfill the requirements
    • Profiles that do not fulfill the requirements are discarded
  • Use the remaining profiles to align the target package

For example, given the following configuration:

{
"name": "useful-library",
"version": "1.0",
...
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"requirements": {
"development": ["react-native@0.70"],
"production": ["react-native@0.69 || 0.70"]
}
"capabilities": [
"core-android", // `core-android` resolves to `react-native`
"core-ios" // `core-ios` also resolves to `react-native`
]
}
}
}

microsoft/react-native/0.70 will be used for development since it is the only profile that fulfills the requirement, react-native@0.70. align-deps ensures that react-native is correctly declared under devDependencies.

 {
"name": "useful-library",
"version": "1.0",
+ "devDependencies" {
+ "react-native": "^0.70.0"
+ }
...
}

For production, there are two profiles that fulfill the requirements, microsoft/react-native/0.69 and microsoft/react-native/0.70. Since this package is a library, align-deps ensures that react-native is correctly declared under peerDependencies:

 {
"name": "useful-library",
"version": "1.0",
+ "peerDependencies": {
+ "react-native": "^0.69.0 || ^0.70.0"
+ },
"devDependencies" {
"react-native": "^0.70.0"
}
...
}

If the package was an app, align-deps would've ensured that react-native is only declared under dependencies.

You can read more about the usage of the different dependencies sections in Dependency Management.

One important thing to note here is that if there are multiple capabilities resolving to the same package, only the first occurrence of the package is checked. To illustrate this scenario, consider the following:

const builtInPreset = {
"0.69": {
core: {
name: "react-native",
version: "^0.69.0",
},
},
"0.70": {
core: {
name: "react-native",
version: "^0.70.0",
},
},
};

const customPreset = {
"0.69": {
"custom-capability": {
name: "react-native",
version: "^0.70.0-fork.1",
},
},
};

const megaPreset = mergePresets([builtInPreset, customPreset]);
/*
{
"0.69": {
core: {
name: "react-native",
version: "^0.69.0",
},
"custom-capability": {
name: "react-native",
version: "^0.70.0-fork.1",
},
},
"0.70": {
core: {
name: "react-native",
version: "^0.70.0",
},
},
}
*/

const filteredPreset = filterPreset(megaPreset, ["react-native@0.70"]);
/* ??? */

If filterPreset checked all capabilities in the profiles, it would return both 0.69 and 0.70 here because custom-capability would satisfy react-native@0.70. This is unexpected behaviour. Instead, align-deps looks for the first package matching the name and then checks whether it fulfills the requirement. With this algorithm, only 0.70 is returned.

Migrating From dep-check

Changes from dep-check to align-deps mostly surrounds the configuration schema, and renaming of a couple of flags:

  • In most cases, your old configuration will still work as before. align-deps will tell you how to convert the old config, but you can also specify --migrate-config to let align-deps do it for you.

  • The following flags were renamed:

    OldNew
    --custom-profiles--presets
    --exclude-packagesno change
    --initno change
    --vigilant--requirements
    --set-versionno change
    --writeno change
  • Because the new config schema no longer relies on profile names to determine a profile, we had to drop support for declaring capabilities at the root level because we cannot reliably detect whether an entry is a package or a profile. You will have to add those capabilities to all the profiles you want them added to.

Terminology

TerminologyDefinition (as used in align-deps's context)
capabilityA capability is in essence a feature that the kit uses. A capability is usually mapped to an npm package. Which versions of the package is determined by a profile (see below).
package manifestThis normally refers to a package's package.json.
presetA collection of profiles.
profileA profile is a mapping of capabilities to npm packages at a specific version or version range.

Contribution

Updating an Existing Profile

Updating an existing profile is unfortunately a manual process.

We have a script that fetches the latest version of all capabilities and presents them in a table together with the current versions.

yarn update-profile

Outputs something like:

| Capability   | Name          | Version   | Latest | Homepage                                        |
| ------------ | ------------- | --------- | ------ | ----------------------------------------------- |
| core | react-native | ^0.68.0-0 | 0.68.2 | https://github.com/facebook/react-native#readme |
| core-android | react-native | ^0.68.0-0 | 0.68.2 | https://github.com/facebook/react-native#readme |
| core-ios | react-native | ^0.68.0-0 | 0.68.2 | https://github.com/facebook/react-native#readme |
| hermes | hermes-engine | ~0.11.0 | = | |
| react | react | 17.0.2 | 18.1.0 | https://reactjs.org/ |
| ... |

With this information, we can see which packages have been updated since the last profile, and scan their change logs for interesting changes that may affect compatibility.

Adding a Profile for a New Version of react-native

The update-profile script can also be used to add a profile. For instance, to add a profile for react-native 0.69, run:

yarn update-profile 0.69

The script will try to figure out what version of react, metro, etc. should be set to, and write to src/presets/microsoft/react-native/profile-0.69.ts. Please verify that this profile looks correct before checking it in.