* Prepare preset-env and compat-data for preset-modules * Add transform-edge-default-parameters from preset-modules * AUtomatically generate data from compat-table * Add compat data for other plugins * Updates after rebase * Add more bugfixes to preset-env * Update tests * Add bugfix/transform-safari-for-shadowing * Fix build script * bugfix/transform-safari-block-shadowing * Fix flow * Include changes from 7127330f02b423d9cb0555b3d2a24dbccbc149b5 * Fix check-compat-data
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
/* eslint sort-keys: "error" */
|
|
|
|
module.exports = {
|
|
"bugfix/transform-async-arrows-in-class": {
|
|
features: ["async functions / async arrow functions in methods, classes"],
|
|
replaces: "transform-async-to-generator",
|
|
},
|
|
"bugfix/transform-edge-default-parameters": {
|
|
features: [
|
|
"destructuring, parameters / shorthand defaults, arrow function",
|
|
],
|
|
replaces: "transform-parameters",
|
|
},
|
|
"bugfix/transform-edge-function-name": {
|
|
features: ['function "name" property / variables (function)'],
|
|
replaces: "transform-function-name",
|
|
},
|
|
"bugfix/transform-safari-block-shadowing": {
|
|
features: [
|
|
"const / scope shadow resolution",
|
|
"const / scope shadow resolution (strict mode)",
|
|
"let / scope shadow resolution",
|
|
"let / scope shadow resolution (strict mode)",
|
|
],
|
|
replaces: "transform-block-scoping",
|
|
},
|
|
"bugfix/transform-safari-for-shadowing": {
|
|
features: [
|
|
"let / for-in loop binding shadowing parameter",
|
|
"let / for-in loop binding shadowing parameter (strict mode)",
|
|
],
|
|
replaces: "transform-block-scoping",
|
|
},
|
|
"bugfix/transform-tagged-template-caching": {
|
|
features: ["template literals / TemplateStrings permanent caching"],
|
|
replaces: "transform-template-literals",
|
|
},
|
|
};
|