six

Results 81 comments of six

Looks like this condition at the beginning of `Detector.collisions` is preventing static-on-sleeping collisions from being recognized: https://github.com/liabru/matter-js/blob/7894b4b44d41077200cfe209c01b35b595db90f4/src/collision/Detector.js#L38-L39 I changed that to the following: ```diff - if ((bodyA.isStatic || bodyA.isSleeping) &&...

Hey @liabru, I proposed (what I think is) a relatively non-disruptive solution to this issue in #877 -- any chance you could give feedback on that?

ditto for "boil": ``` > c('I boiled it all').verbs().conjugate() [ { PastTense: 'boiled', PresentTense: 'boils', Infinitive: 'boil', Gerund: 'boiling', Actor: 'boiller', FutureTense: 'will boil' } ] ``` even though it's...

Seconding this! I would love React support specifically, but more generally I think it would be great if zdog were a little friendlier in terms of interoperability and placing nice...

Poking around a bit, it looks like `ignoreCommitters` is only referenced here: https://github.com/lerna/lerna-changelog/blob/01013b0bfe1ac4abd41c693a2714aaa2afebf2b5/src/changelog.ts#L118-L120 This in turn is only referenced by `getCommitters`, which is only used for filling out contributor info...

Thanks for the detailed responses @ondras @blinkdog ! @seanohue I'm not a huge fan of maintaining typedefs out-of-band (that is, manually written as a separate definitions file) for a few...

Also, as @ondras noted, simply removing the prototype extensions is indeed a backwards-incompatible change. With my fork I haven't been taking any particular care to maintain API compatibility -- while...

@ondras That all sounds fantastic! For docs, my experience with TypeDoc has been that it unfortunately doesn't have great support for richer documentation that includes interactive elements, usage samples in...

For `.d.ts` files I'm not too sure what the question is -- for projects written in TypeScript, there's no need to mess with DefinitelyTyped or anything, you just publish the...