Skip to content

Commit 19eb7c4

Browse files
authored
Merge branch 'master' into better-app-name-ux
2 parents 4530eaa + 191c9c2 commit 19eb7c4

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

src/releases/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { PACKAGE_NAMES } from '../constants'
22

33
const versionsWithContent = {
44
[PACKAGE_NAMES.RN]: [
5+
'0.72',
56
'0.69',
67
'0.68',
78
'0.64',

src/releases/react-native/0.72.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React, { Fragment } from 'react'
2+
3+
export default {
4+
comments: [
5+
{
6+
fileName: 'metro.config.js',
7+
lineNumber: 1,
8+
lineChangeType: 'add',
9+
content: (
10+
<Fragment>
11+
In React Native 0.72, we've changed the config loading setup for Metro
12+
in React Native CLI. The base React Native Metro config is now
13+
explicitly required and extended here in your project's Metro config
14+
file, giving you full control over the final config. In addition, this
15+
means that standalone Metro CLI commands, such as [`metro
16+
get-dependencies`](https://facebook.github.io/metro/docs/cli/#get-dependencies-entryfile)
17+
will work. We've also cleaned up the leftover defaults.
18+
</Fragment>
19+
),
20+
},
21+
],
22+
}

0 commit comments

Comments
 (0)