Set babel to utilize `useBuiltIns: "usage”`
Removes explict calls to core-js polyfills. Lets babel find polyfills when needed for our target browsers.
Showing
... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
"webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=3584\" NODE_ENV=production webpack --config config/webpack.config.js" | "webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=3584\" NODE_ENV=production webpack --config config/webpack.config.js" | ||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"@babel/core": "^7.6.2", | "@babel/core": "^7.7.5", | ||
"@babel/plugin-proposal-class-properties": "^7.5.5", | "@babel/plugin-proposal-class-properties": "^7.5.5", | ||
"@babel/plugin-proposal-json-strings": "^7.2.0", | "@babel/plugin-proposal-json-strings": "^7.2.0", | ||
"@babel/plugin-proposal-optional-chaining": "^7.7.5", | "@babel/plugin-proposal-optional-chaining": "^7.7.5", | ||
... | @@ -65,7 +65,7 @@ | ... | @@ -65,7 +65,7 @@ |
"codesandbox-api": "^0.0.20", | "codesandbox-api": "^0.0.20", | ||
"compression-webpack-plugin": "^3.0.1", | "compression-webpack-plugin": "^3.0.1", | ||
"copy-webpack-plugin": "^5.0.5", | "copy-webpack-plugin": "^5.0.5", | ||
"core-js": "^3.2.1", | "core-js": "^3.4.0", | ||
"cropper": "^2.3.0", | "cropper": "^2.3.0", | ||
"css-loader": "^1.0.0", | "css-loader": "^1.0.0", | ||
"d3": "^4.13.0", | "d3": "^4.13.0", | ||
... | @@ -210,4 +210,4 @@ | ... | @@ -210,4 +210,4 @@ |
"node": ">=8.10.0", | "node": ">=8.10.0", | ||
"yarn": "^1.10.0" | "yarn": "^1.10.0" | ||
} | } | ||
} | } | ||
\ No newline at end of file |
This diff is collapsed.
Please register or sign in to comment