Devin Weaver

Results 234 comments of Devin Weaver

For a work-around here is an alternative addon: https://www.npmjs.com/package/ember-co

> the pattern of doing a timeout at the beginning of a `.restartable()` task as a means to debounce a task is so common that you'd think there'd be a...

> Unwrapping promises passed in Never ran into this. In fact if I were to run into this I would immediately think to unwrap the promise in the caller not...

@aaronbhansen what about this: ``` js import { task, all } from 'ember-concurrency'; task(function * (...promises) { let [one, two, three] = yield all(promises); … }) ``` I don't quite...

@DylanPiercey debowerify is meant to be used with browserify which constructs (transpiles?) multiple sources into one source file. It ∴ creates it's own source maps. The intent would be to...

@pllee And you hit the bower nail on the head. That has always been the problem with bower and why many browserify fans prefer npm modules over bower components. Until...

@pllee When this happened to me I use bower to install the dependencies and then used browserify-shim instead of debowerify and manually declared the components dependencies.

@pllee Why _write a tool_ that's exactly what browserify-shim is designed to do.

In my cases where I also wanted CSS and stuff I used the CSS processor lib to pull it in. Like Less or Sass include statements and left the JS...