Gabin Aureche
Gabin Aureche
@olahol I think leaving room to add a component that's 100% focused on getting the autocomplete right is a good idea. I needed to add an autocomplete to react-tagsinput so...
Yeah, in the end that's what I ended up doing: re-building my own autocomplete suggestion as using react-autosuggest wasn't as easy as expected. So you probably better do that too...
I submitted a few PRs to make it easier but the feature's not implemented yet AFAIK. I'll have a look and see if I can create a PR with what...
If the generated files are intended to be read and modified then it makes total sense :+1: Maybe the `normalize.css` file should just be removed from the repository then?
I agree that it shouldn't be part of `sakura` but published as a separate package like `sakura-cli`, as suggested by @purag. It doesn't mean it shouldn't be part of the...
Although I like the idea, I believe Jekyll and other static site generators would defeat the purpose of sakura. They're complex tools that add a level of abstraction that makes...
I tried something that didn't work so I thought I'd share the blockers. I've been relying on the [CommonMark Spec](https://spec.commonmark.org/0.28/) and more specifically [an example](https://spec.commonmark.org/0.28/#example-120) from the spec for HTML...
I was browsing formatjs' website and had some trouble finding the repositories because of this issue. It'd be great to have that updated 👍
@frank-zsy are you looking to generate factories? This is exactly what [zhouzi/graphql-codegen-factories](https://github.com/zhouzi/graphql-codegen-factories) does. For example, given the following schema: ```gql type Repository { id: ID! name: String! } ``` It...
The fix suggested in https://github.com/dotansimha/graphql-code-generator/issues/6539 does work and is part of my fork which is also published to npm, with automatic updates enabled: - Forked repository: [zhouzi/graphql-schema](https://github.com/zhouzi/graphql-schema) - npm package:...