Karolis Šarapnickis

Results 20 comments of Karolis Šarapnickis

@diegohaz regards `babel-preset-gatsby` the `v5.0.1` version loads babel config from root and root config doesn't have `babel-preset-gatsby` plugin enabled. That's why the tests passed. From `v.5.1.0` babel configs are resolved...

@williansabiao and where this eslint config file is located? A repro project structure would help.

@amilajack ok I think got a fix in https://github.com/tleunen/eslint-import-resolver-babel-module/pull/104

@lostfictions hey, well I don't really have much time for this, though I can offer a workaround for hiding rich-text editor for the current Netlify CMS widget: ```js export default...

Sure thing! FYI, you can easily swap the input widget with any React component: ``` import { MdxControl, MdxPreview } from 'netlify-cms-widget-mdx'; CMS.registerWidget('mdx', MdxControl, MdxPreview); ``` The `MdxControl` is the...

This issue is for [gatsby-transformer-mdx](https://github.com/buz-zard/gatsby-mdx/tree/master/packages/gatsby-transformer-mdx). I had an idea that you'd be able to define `defaultComponents` and the transformer would pass these to [MDXProvider](https://github.com/mdx-js/mdx/blob/master/docs/getting-started/index.md#mdxprovider). You can always achieve this via...

Hi, how exactly are you using env variables in main? I have a feeling there might be an issue with env variable destructuring

Yeah, if you don't use the variables directly, but rather dynamically or via destructuring it won't work (https://github.com/evanw/esbuild/issues/438#issuecomment-857500937). I might look later around for newer techniques to handle this better.

~~@AnnatarHe could you provide a real-life use case? I'm struggling to create an example and test this feature.~~

@AnnatarHe ignore my previous, comment, I was thinking about another feature. Yeah, this feature is legit, will tackle this next time I sit do some OSS.