machty / ember-concurrency

ember-concurrency is an Ember Addon that enables you to write concise, worry-free, cancelable, restartable, asynchronous tasks.
http://ember-concurrency.com
MIT License
691 stars 155 forks source link

Getting `alias` error when upgrading to 4.2 #460

Closed npendery closed 2 years ago

npendery commented 2 years ago

I get this error:

Cursor_and_EmberQuickstart

maxfierke commented 2 years ago

@npendery This should not be a problem on e-c 2.x, as @ember/computed is not used internally anymore. However, from this, it looks like you're using ember-concurrency 1.x. There are no plans to update the 1.x branch further, but upgrading to 2.x should be relatively smooth for most folks.

(There's also an upgrade guide for tips. In addition, it carries full support for the @tracked ecosystem, new features, and lots of bugfixes.)

npendery commented 2 years ago

Thanks for the response @maxfierke !

I am using the latest version so really confused how this gets into the vendor.js file....not sure if there was a common issue here but will keep digging

maxfierke commented 2 years ago

@npendery it's likely there's another add-on depending on an earlier version of ember-concurrency. If you use yarn, you can find out through the use of yarn why ember-concurrency or check out ember-cli-dependency-lint

npendery commented 2 years ago

Oh jeez, youre totally right. Not sure how I missed that 🤦

Thanks again!