ember-concurrency
ember-concurrency copied to clipboard
ember-concurrency is an Ember Addon that enables you to write concise, worry-free, cancelable, restartable, asynchronous tasks.
I'm about to deprecate `Ember.testing` :sweat_smile: https://github.com/emberjs/rfcs/pull/1003/ seen on this page: https://ember-concurrency.com/docs/testing-debugging
We are not currently using glint in our ember apps, and it seems most other packages in the ember ecosystem have `@glint/template` as an optional peer dependency. Upgrading to ember-concurrency...
In a fresh 5.6.0 install (`ember new app --typescript`) with just ember-concurrency 4.0.0 and most recent Glint (`ember install ember-concurrency` and following the basic instructions from https://typed-ember.gitbook.io/glint/environments/ember/installation), I get these...
Attempt to fix #564 Currently running into issues with jscodeshift/babel failing to parse `export const foo = ...` in `.d.ts` files in `declaration`. cc @nullvoxpopuli
Benchmark task-modifier was not working out of the box on my tasks. I had to make sure we are using the right this. I was inspired by what is done...
Team, could you please knock me in a right direction. I have composed the following example on twiddle: https://ember-twiddle.com/29aa8f11ea2208bd5f4095f7c12bfdcd?openFiles=templates.application%5C.hbs%2C Why doesn't it work the way that is mentioned in docs:...
Follows on from this other issue, but it's closed since the author figured out a workaround - but I do think this addon should export types for helpers. https://github.com/machty/ember-concurrency/issues/530 With...
An enhancement request to add support to the `{{cancel-all}}` helper for passing options through to the task's `cancelAll()` method. ### Observed Currently the helper only passes on the task and...
I am opening this PR to start a discussion. There is currently no way I can find to wrap async arrow function tasks in a test waiter a la `waitFor`...