Josh Kelley
Josh Kelley
I've updated my js-joda adapter for the current version of MUI-X. If any users of js-joda are interested in giving it a try, I'd appreciate it. It works for my...
Thanks for working on this, @gopal-panigrahi. I'm curious about the changes in d9fd526d225f7b5b8e335662b386719301a52f96 - to me, the behavior feels cleaner without this change (letting the drag rectangle pin to the...
@mweststrate I get it. I apologize for contributing to your pain as an open-source maintainer. `setUseStrictShallowCopy(false)` with 10.0.4 or 10.0.4-beta seems to have no effect. For what it's worth, Immer...
[yarn-plugin-outdated](https://github.com/mskelton/yarn-plugin-outdated)'s purpose is to display a list of outdated NPM packages. As part of that, it parses packages' `repository` field so that it can display a link to information about...
Thanks for the reply. It's my understanding that [the `git:` protocol](https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols#_the_git_protocol) is rarely used, and it looks like [GitHub removed support for it](https://github.blog/2021-09-01-improving-git-protocol-security-github/). On the other hand, I'm taking a...
@amilajack, could you rerun the workflow for this branch? I believe the earlier test failures were due to issues that had already been fixed in the main branch.
Thank you; I failed to realize I was out of date. 11.0.4 fixes the specific compiler error I was encountering, but the "Masquerading as CJS" issue reported by Are the...
We've been having problems with our application's `createTheme` calls (taking excessively long to compile, causing editor slowdowns in VS Code as it tries to parse the types, and - apparently...
@blastshielddown, you can always use `as any`: ```ts knex('myTable').orderBy(knex.raw(`"jsonCol"->>'jsonVal'`) as any, 'desc') ``` Or, if your project's coding standards frown on `as any`, and if you're [using Knex's `Tables` interface...
I believe that this is a result of https://github.com/frenchbread/private-ip/commit/346867afe100d442f5d56233b0d93040fb682d2f - now that the `exports` field contains an [export condition](https://nodejs.org/api/packages.html#packages_conditional_exports) (`import`), it won't work with any loaders that _don't_ include that...