Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(build): mitigate regressions to build framents in v4.13.1 (#8137)
List of regressions fixed in this commit:

1. need to polyfill util module
2. always transform logical nullish assignment with babel 

Refs #8136
  • Loading branch information
char0n committed Aug 2, 2022
1 parent 962d547 commit 9221ff8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 159 deletions.
5 changes: 4 additions & 1 deletion babel.config.js
Expand Up @@ -68,7 +68,10 @@ module.exports = {
]
},
"useBuiltIns": false,
"corejs": { version: 3 }
"corejs": { version: 3 },
"include": [
"@babel/plugin-proposal-logical-assignment-operators"
]
}
],
"@babel/preset-react"
Expand Down
157 changes: 0 additions & 157 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Expand Up @@ -177,7 +177,6 @@
"stream-browserify": "^3.0.0",
"tachyons-sass": "^4.9.5",
"terser-webpack-plugin": "^5.3.1",
"util": "=0.12.4",
"webpack": "^5.65.0",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^4.9.2",
Expand Down

0 comments on commit 9221ff8

Please sign in to comment.