Josh Kelley

Results 36 comments of Josh Kelley

The pip command you gave gives another error: ``` Collecting git+https://github.com/coolprop/coolprop.git Cloning https://github.com/coolprop/coolprop.git to /private/var/folders/j5/l20bwyp12yb180ql522y2t3w0000gn/T/pip-req-build-ldyyl3ln Running command git clone --filter=blob:none -q https://github.com/coolprop/coolprop.git /private/var/folders/j5/l20bwyp12yb180ql522y2t3w0000gn/T/pip-req-build-ldyyl3ln Resolved https://github.com/coolprop/coolprop.git to commit 339a7ac4977bace36947ef6608b68bc258afdc2c Running command...

In limited local testing, this seems to work for resolving the issue in #61.

@BertrandBordage - From our perspective, we rely on deduping fairly heavily. For example, three different components that are all mounted at different places in the component tree might need the...

I'm biased, because I'm one of the folks hoping for js-joda support. But a few potential considerations: * I'm not sure that it's valid to translate from download count to...

@tripodsan , I'm having trouble understanding your [code snippet](https://github.com/dolanmiu/docx/issues/1162#issuecomment-1086835776). Where do you add the `if (data.ext === 'svg' || data.svgBuffer)` block?

If I understand this issue correctly: * The warnings indicate that per-project Jest configs (i.e., files referenced by a Jest config `projects` entry) are using configuration settings like `coverageDirectory`, `coverageReporters`,...

@mr-pinzhang As far as I know, it's ready to go. I haven't heard anything from the Bunyan team. I've since switched to [Pino](https://getpino.io/); it's a largely drop-in replacement for Bunyan...

Instead of checking whether `process.stderr` is defined, could you replace `process.stderr.write(msg + '\n')` with `console.error(msg)`? That should work in a browser as well as Node.js without special handling.

Here's a solution for redux-logic 3.0.3, using Redux Toolkit's action creators. Given an action creator like this: ```ts export const uploadData = createAction('uploadData'); ``` The redux-logic handler should be able...

This was changed here: https://github.com/immerjs/immer/commit/452a5085c0f84c3277ee16ab9b072ad99127ce90#diff-4ade25325a6cd7d1cca619364c84d19bfa47e6939a2c1b38d065767255b8f86eR66 However, based on the commit messages, I'm not sure why the change was made.