Remco Haszing
Remco Haszing
Yes, `remark-language-server` now tries to import the locally installed `remark` package from `node_modules`. If this fails, it shows a more friendly message. The pull request that changes this is remarkjs/remark-language-server#5,...
> HOWEVER you can start it with a backslash-escaped identifier. So `.2 {}` is invalid, but `.\32 {}` - the character sequence for '2' is valid. That's weird, but it...
I have created an Axios based alternative that doesn’t suffer from this issue. https://www.npmjs.com/package/axios-test-instance
I’d like to see hooks exported from the Preact core module. For most node modules, sub modules are not supposed to be used directly. ```jsx import { h, useCallback, useEffect,...
> Ah, I'm a bit busy these days, life and business at the same time. Hope I could find more time on prettier next week. I would love to see...
I would really like a solution that _just works_ once configured. When I contribute to a project that uses Prettier, I expect the normal Prettier workflow to just work out...
I would like to create a prettier plugin to resolve #4040. I need to override the printer for `package.json` to accomplish this. This is also not possible due to this...
Nice find @strrife! The following alternative works too. ```ts @HasOne(() => AuctionBid) public usersBid: Awaited; ```
> Looks good, one idea. > > I wonder whether we should document that automatic runtimes need the `/jsx-dev-runtime` for this to work. E.g., here: https://mdxjs.com/packages/mdx/#optionsjsxruntime > > I believe...
> Should `jsxDev` be needed in `evaluate`, `run`? https://mdxjs.com/packages/mdx/#evaluatefile-options, https://mdxjs.com/packages/mdx/#options-1 Yes. The automatic dev runtime needs `jsxDEV`, whereas the automatic production runtime needs `jsx` and `jsxs`. I suggest that for...