Skip to content

v5.12.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 16 Oct 01:09
· 1174 commits to master since this release

5.12.0 (2018-10-16)

Features

Migration Guide

Babel Polyfill

If you're using babel-polyfill, please ensure you upgrade to @babel/polyfill

Update your package.json
"dependencies": {
  ...
-  "babel-polyfill": "^6.26.3"
+  "@babel/polyfill": "^7.0.0"
  ...
}
Update your consuming code (if managing via sku.config.js)
polyfills: [
  ...
-  'babel-polyfill'
+  '@babel/polyfill'
  ...
]
Update your consuming code (if managing directly)
-require("babel-polyfill");
+require("@babel/polyfill");