Ben Gourley

Results 18 issues of Ben Gourley

**tl;dr** out of sync dependencies on "promise" in React Native vs. fbjs mean that two different versions get installed on a project, and unhandled promise rejections do not get reported...

CLA Signed

jQuery UI datepicker does this.

Some options are required in some circumstances. anytime should error if they are not passed. Ensure optional ones are set to sensible defaults.

It would be nice to have a feature in compact that lets you reference third party scripts.. e.g jQuery on Google's CDN, Google Maps API, various share widgets (Twitter, +1,...

## Goal jcenter will be going away. Initially I tried to remove our reliance on jcenter for fixtures and examples, but not all of React Native's dependencies are available on...

Hi there, first off thanks for an incredible useful collection of modules! 👍 ## Expected Behavior I would expect `StackFrame.functionName` to be consistent across browsers. ## Current Behavior The parsed...

a:feature

Thanks for the great module! I got caught out by this when using a monorepo set up: https://github.com/goto-bus-stop/browser-pack-flat/blob/77cafd3224332ad09e153e5c556b2193eda07bba/index.js#L41-L50 Vanilla browserify was able to successfully dedupe because even though the paths...

Given the function source: ```js function () { // set the script that called this function updateLastScript(script) // immediately unset it _setTimeout(function () { updateLastScript(null) }, 0) cb.apply(this, arguments) }...

I'm trying to figure out a way (might not even be possible) to "stop" a choo/barracks app for https://github.com/bengourley/choo-resume so that old versions of a hot-swapped app don't continue to...

When doing prototypal inheritance this is preffered: ``` js function Animal() { } function Bear() { Animal.call(this) } Bear.prototype = Object.create(Animal.prototype) ``` This needs documenting and explaining. PRs welcome!