ember-maybe-import-regenerator
Uncaught TypeError: regeneratorRuntime is not a function
It is now.
This is an addon that'll import the
Regenerator
Runtime in your Ember app, but only if you didn't already set
babel.includePolyfill
to true. This is useful for:
- Apps that want to use ES6 generator functions but don't want to import the large Babel polyfill
- Addons that depend on generator functions (or other addons
that depend on generator functions) but don't want to
force users to have to add
babel.includePolyfill: true
to their config files (like ember-concurrency, ember-power-select), but shouldn't double import regenerator-runtime if the user already hasincludePolyfill: true
Installation
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit http://ember-cli.com/.