v5.12.0
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");