Felix Becker
Felix Becker
I just met this again, the Chrome extension release failed because of a `503 Service Unavailable`, leaving the Firefox extension released, but not Chrome, and not GitHub or npm (because...
RxJS has the exact same problem as described by @deregtd https://github.com/ReactiveX/rxjs/issues/2852 https://github.com/ReactiveX/rxjs/pull/3074
After https://github.com/cytoscape/cytoscape.js/issues/1012#issuecomment-228372289, why not do PR to this repo and publish them with npm? That would be even better than DefinitelyTyped
The .d.ts file would have to get updated on interface changes. The alternative would be to actually use TypeScript in this library, which would provide a variety of benefits (type...
@phreed how's it going? Any update?
TypeScript is way more popular than Flow. Just look at questions asked on StackOverflow:    Flow definitions won't help TypeScript users of course, and TypeScript definitions don't help...
> yarn upgrade foo --prefer-locked-dependencies shall ONLY upgrade package foo, retaining any previously locked transitive dependency versions What if the new version of `foo` changed a dependency range that requires...
It's important to have a way to check if all files in a folder are formatted in CI, and fail the build if some are not. Every formatter I've used...
FYI the `delay` package on npm supports cancellation with `AbortSignal`: https://www.npmjs.com/package/delay#signal
I second what @gregsdennis said. Encoding numbers in strings is extremely common anytime you work with money or extremely large numbers (over MAX_SAFE_INTEGER). It would actually be nice to not...