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.
With the new-ish changes requiring the Babel plugin to be registered, it might be nice to have a blueprint run on installation that sets that configuration up for you. I...
This came up as that dependency imported from the transform [here](https://github.com/machty/ember-concurrency/blob/master/packages/ember-concurrency/async-arrow-task-transform.js#L19) not getting resolved in a strict pnpm environment (no hoisting).
Bumps [webpack](https://github.com/webpack/webpack) from 5.90.1 to 5.94.0. Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked Handle properly data/http/https protocols in source maps Make...
The new way to define a task is ``` waitAFewSeconds = task({drop: true}, async () => { this.status = 'Gimme one second...'; await timeout(1000); this.status = 'Gimme one more second...';...