File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
packages/react-devtools-shell Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,31 @@ const E2E_APP_BUILD_DIR = process.env.REACT_VERSION
47
47
const makeConfig = ( entry , alias ) => ( {
48
48
mode : __DEV__ ? 'development' : 'production' ,
49
49
devtool : __DEV__ ? 'cheap-source-map' : 'source-map' ,
50
- stats : 'normal' ,
50
+ stats : {
51
+ preset : 'normal' ,
52
+ warningsFilter : [
53
+ warning => {
54
+ const message = warning . message ;
55
+ // We use ReactDOM legacy APIs conditionally based on the React version.
56
+ // react-native-web also accesses legacy APIs statically but we don't end
57
+ // up using them at runtime.
58
+ return (
59
+ message . startsWith (
60
+ `export 'findDOMNode' (imported as 'findDOMNode') was not found in 'react-dom'` ,
61
+ ) ||
62
+ message . startsWith (
63
+ `export 'hydrate' (reexported as 'hydrate') was not found in 'react-dom'` ,
64
+ ) ||
65
+ message . startsWith (
66
+ `export 'render' (imported as 'render') was not found in 'react-dom'` ,
67
+ ) ||
68
+ message . startsWith (
69
+ `export 'unmountComponentAtNode' (imported as 'unmountComponentAtNode') was not found in 'react-dom'` ,
70
+ )
71
+ ) ;
72
+ } ,
73
+ ] ,
74
+ } ,
51
75
entry,
52
76
output : {
53
77
publicPath : '/dist/' ,
You can’t perform that action at this time.
0 commit comments