emberjs / ember-cli-babel

Ember CLI plugin for Babel
MIT License
153 stars 119 forks source link

Drop support for the `includePolyfill` option #458

Closed bertdeblock closed 1 year ago

bertdeblock commented 1 year ago

@babel/polyfill is deprecated, the replacement for users would be to include core-js/stable directly:

// app.js

import 'core-js/stable';

Builds on #454, as running ember test wasn't working for me locally, because of the macOS + Ember CLI issue.

Related to #453.