File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 8.5.2
2
+
3
+ - Ignore eslint warnings during the ` build ` script
4
+
1
5
## 8.5.1
2
6
3
7
- Updated coalesce-locale script to handle if a zion dep is only nested, and not flattened to node_modules/@fs /
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fs/react-scripts" ,
3
- "version" : " 8.5.1 " ,
3
+ "version" : " 8.5.2 " ,
4
4
"upstreamVersion" : " 5.0.1" ,
5
5
"description" : " Configuration and scripts for Create React App." ,
6
6
"repository" : {
Original file line number Diff line number Diff line change @@ -185,8 +185,9 @@ function build(previousFileSizes) {
185
185
messages . warnings . length
186
186
) {
187
187
// Ignore sourcemap warnings in CI builds. See #8227 for more info.
188
+ // Frontier Ignore eslint warnings as well
188
189
const filteredWarnings = messages . warnings . filter (
189
- w => ! / F a i l e d t o p a r s e s o u r c e m a p / . test ( w )
190
+ w => ! / F a i l e d t o p a r s e s o u r c e m a p / . test ( w ) && ! / \[ e s l i n t \] / . test ( w )
190
191
) ;
191
192
if ( filteredWarnings . length ) {
192
193
console . log (
You can’t perform that action at this time.
0 commit comments