Kenneth Chung

Results 6 comments of Kenneth Chung

It seems like co's `yield ` diverges in behavior from `await ` ```js // co: var result = yield [Promise.resolve(1)]; result // => [1] // async/await: var result = await...

Yep we are running 4 instances of watchify with browserify-hmr in parallel, each with a different port for 4 different apps. Would be nice if they could all listen to...

translucent -> opaque hovers (opposite of dim): e.g. ``` css .hover-o-10 { opacity: .1 } .hover-o-10:hover { opacity: 1 } ``` etc

Yeah.. nested serial tasks within a parallel block would be useful. i guess it's possible if you added another script for the nested task but that won't scale well. and...

@arcanis We don't control the build environment. For example I am using Netlify which does not have access to private dependencies through github (not npm private registry, so I can't...

that's not gonna work https://github.com/facebook/react/issues/14357. will need react team to implement a workaround