Browse Source

chore: compile to Firefox >= 53

it's the min version in quite a few Babel plugins/transforms:
https://github.com/babel/babel/blob/master/packages/babel-preset-env/data/plugins.json
tophf 6 years ago
parent
commit
1e75a50fa3
2 changed files with 1 additions and 7 deletions
  1. 0 6
      .babelrc.js
  2. 1 1
      .browserslistrc

+ 0 - 6
.babelrc.js

@@ -5,12 +5,6 @@ module.exports = {
       ...process.env.BABEL_ENV !== 'test' && {
         modules: false,
       },
-      exclude: [
-        // for Firefox 52, see babel/babel#8204
-        'transform-regenerator',
-        // all features of this transform are natively supported since Chrome 49, Firefox 52
-        'transform-parameters',
-      ],
       useBuiltIns: false,
     }],
   ],

+ 1 - 1
.browserslistrc

@@ -1,2 +1,2 @@
 Chrome >= 55
-Firefox >= 52
+Firefox >= 53