With Babel 6.14.0 they released a new preset called babel-latest, which is intended to be a preset that follows the latest spec changes. Let's use this.
Current Behavior
Currently we use the ES2015 preset, which means we have a need to keep ez-build up to date with preset changes. It's a fairly low maintenance task, since the spec gets ratified once a year, but this new babel-latest preset takes care of most of that for us. Instead, we just need to consider whether to set any specific preset options.
Expected Behavior
With Babel 6.14.0 they released a new preset called
babel-latest
, which is intended to be a preset that follows the latest spec changes. Let's use this.Current Behavior
Currently we use the ES2015 preset, which means we have a need to keep ez-build up to date with preset changes. It's a fairly low maintenance task, since the spec gets ratified once a year, but this new
babel-latest
preset takes care of most of that for us. Instead, we just need to consider whether to set any specific preset options.