File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
import Markdown from './Markdown'
3
3
4
- const DepCheckAlert = ( ) => (
4
+ const AlignDepsAlert = ( ) => (
5
5
< >
6
6
< Markdown >
7
7
You can use the following command to kick off the upgrade: `npx
8
- @rnx-kit/dep-check --set-version [major.minor]`.
8
+ @rnx-kit/align-deps --requirements react-native@ [major.minor]`.
9
9
</ Markdown >
10
10
< br />
11
11
< Markdown >
12
- `dep-check ` is an OSS tool from Microsoft that automates dependency
12
+ `align-deps ` is an OSS tool from Microsoft that automates dependency
13
13
management. It knows which packages\* versions are compatible with your
14
14
specific version of RN, and it uses that knowledge to align dependencies,
15
15
keeping your app healthy and up-to-date\*\*. [Find out more
@@ -25,4 +25,4 @@ const DepCheckAlert = () => (
25
25
</ >
26
26
)
27
27
28
- export default DepCheckAlert
28
+ export default AlignDepsAlert
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
12
12
import UpgradeSupportAlert from './UpgradeSupportAlert'
13
13
import AppNameWarning from './AppNameWarning'
14
14
import UsefulLinks from './UsefulLinks'
15
- import DepCheckAlert from './DepCheckAlert '
15
+ import AlignDepsAlert from './AlignDepsAlert '
16
16
17
17
import { PACKAGE_NAMES } from '../../constants'
18
18
@@ -212,7 +212,7 @@ class UsefulContentSection extends Component {
212
212
< UsefulLinks packageName = { packageName } versions = { versions } />
213
213
) : null }
214
214
215
- < DepCheckAlert />
215
+ < AlignDepsAlert />
216
216
217
217
< Separator />
218
218
You can’t perform that action at this time.
0 commit comments