You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I add any version of ember-power-select addon after version 0.9.0-beta.1, I get this error in the console, and the app won't start.
Uncaught ReferenceError: regeneratorRuntime is not defined
It also happens with ember-power-select-with-create version 0.2.0 and later. There was a workaround that said to add the following to ember-cli-build.js:
var app = new EmberAddon(defaults, {
babel: {
includePolyfill: true,
},
});
which I did, and that made it work in the browser, but it still doesn't work when I package it for nwjs.
I think it has to do with ember-concurrency.
The text was updated successfully, but these errors were encountered:
When I add any version of ember-power-select addon after version 0.9.0-beta.1, I get this error in the console, and the app won't start.
Uncaught ReferenceError: regeneratorRuntime is not defined
It also happens with ember-power-select-with-create version 0.2.0 and later. There was a workaround that said to add the following to ember-cli-build.js:
var app = new EmberAddon(defaults, {
babel: {
includePolyfill: true,
},
});
which I did, and that made it work in the browser, but it still doesn't work when I package it for nwjs.
I think it has to do with ember-concurrency.
The text was updated successfully, but these errors were encountered: