File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { PACKAGE_NAMES } from '../constants'
22
33const versionsWithContent = {
44 [ PACKAGE_NAMES . RN ] : [
5+ '0.72' ,
56 '0.69' ,
67 '0.68' ,
78 '0.64' ,
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments