An Ember-CLI plugin that uses 6to5 (the precursor to Babel) to transpile ES6 syntax to ES5 for Ember-CLI projects. Version 3.0.0 is the latest stable release. This package is historical and has been superseded by ember-cli-babel. It blacklists the 6to5 module transform by default in favor of Ember-CLI's own ES6 module transpiler. Key differentiator: it was an early integration of 6to5/Babel into Ember-CLI, now obsolete.
npm install ember-cli-6to5No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Installs ember-cli-6to5, configures it in Brocfile.js to disable comments, and shows usage of ES6 template literals and arrow functions in an Ember component.
Run 'npm uninstall --save-dev ember-cli-6to5 && npm install --save-dev ember-cli-babel' and update Brocfile.js to use 'babel' instead of '6to5'.
Set compileModules: true in the 6to5 options to enable 6to5 module transpilation.
Migrate to ember-cli-babel for compatibility with modern Babel.
Ensure 6to5 is installed: 'npm install --save-dev 6to5' or migrate to ember-cli-babel.
Configure 6to5 options within the EmberApp constructor as shown: var app = new EmberApp({ '6to5': { /* options */ } });