Alireza Mirian
Alireza Mirian
```ts async function getTrackingBranch({ fs, dir, branch, }: Pick & { branch: string; }): Promise { const mergeRef = await git.getConfig({ fs, dir, path: `branch.${branch}.merge`, }); const remote = await...
react-codemod is two things now: - A bunch of jscodeshift transforms - A CLI to run the transforms The CLI has some nice features like checking git status, dry run,...
@LFDanLu 1673 errors with `strict` set to true. 1593 errors with only `strictNullCheck` set to true.
Could we have this merged?
There are currently two issues with types that are imported from .d.ts files: 1. **import resolution**: [resolve](https://www.npmjs.com/package/resolve) that's [used in the built-in fs importer](https://github.com/reactjs/react-docgen/blob/main/packages/react-docgen/src/importer/makeFsImporter.ts#L57) is not built to locate type...
> Something worth mentioning is that Docusaurus uses MDX, and MDX compiles Markdown documents to React components. > > For this reason, the MDX React components must be able to...
Awesome! Thanks! > Note: I'm keeping this issue open because we should still forbid users to have one docs folder nested into another. > > I also doubt using the...
> Note we also need to alias `@mdx-js/react` because MDX will eventually add an extra import depending on the MDX content to import components from React context. True. In fact...
Build time going from 3:20 build time to 0:24 🚀 Amazing job, and a very nice approach to implement with the incremental API! Is there any plan for allowing .swcrc...
@slorber Thanks, using webpack.jsLoader option works. Tested again and .swcrc is not picked up.