File tree Expand file tree Collapse file tree 3 files changed +89
-190
lines changed
packages/react-devtools-shared Expand file tree Collapse file tree 3 files changed +89
-190
lines changed Original file line number Diff line number Diff line change 1010 "react-dom-15" : " npm:react-dom@^15"
1111 },
1212 "dependencies" : {
13- "@babel/parser" : " ^7.12.5 " ,
14- "@babel/preset-env" : " ^7.11.0 " ,
13+ "@babel/parser" : " ^7.28.3 " ,
14+ "@babel/preset-env" : " 7.26.9 " ,
1515 "@babel/preset-flow" : " ^7.10.4" ,
1616 "@babel/runtime" : " ^7.11.2" ,
17- "@babel/traverse" : " ^7.12.5 " ,
17+ "@babel/traverse" : " ^7.28.3 " ,
1818 "@reach/menu-button" : " ^0.16.1" ,
1919 "@reach/tooltip" : " ^0.16.0" ,
2020 "clipboard-js" : " ^0.3.6" ,
Original file line number Diff line number Diff line change @@ -55,7 +55,11 @@ function buildInlinePackage() {
5555 logDim ( data ) ;
5656 } ) ;
5757 buildProcess . stderr . on ( 'data' , data => {
58- if ( `${ data } ` . includes ( 'Warning' ) ) {
58+ if (
59+ `${ data } ` . includes ( 'Warning' ) ||
60+ // E.g. [BABEL] Note: The code generator has deoptimised the styling of * as it exceeds the max of 500KB.
61+ `${ data } ` . includes ( '[BABEL] Note' )
62+ ) {
5963 logDim ( data ) ;
6064 } else {
6165 logError ( `Error:\n${ data } ` ) ;
You can’t perform that action at this time.
0 commit comments