Benjamin Bender

Results 101 comments of Benjamin Bender

@shilman I did a bit of experimentation on adding csf3-support to @storybook/svelte based on the work done on @storybook/angular-cli. I'm not very familiar with the internals of storybook and therefor...

Refined method, based on @chrissisura. Quickly extended with async-handling und configurable via callbacks to be more flexible. May be of use for someone so I'll leave it here: ```ts const...

@shilman that might also clash with other quite popular eslint-rules (f.e. https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-anonymous-default-export.md) as there may be projects which internally forbid unnamed exports. Would be also nice if this could be...

For me it's the single-source of truth for my graphql-config. Mainly because its natively supported in [vscode-graphql](https://github.com/graphql/vscode-graphql). In which way is it bound to CommonJS? Afaik they are using esbuild...

The problem is a bit deeper I think. If I have something like: ``` php /** * @Rest\QueryParam(name="page", requirements="\d+", default="1", description="Page of the overview") * @Rest\QueryParam(name="limit", requirements="\d+", default="25", description="Limit per...

As I thought a bit more about this topic, it became clear, that the problem is more or less conceptional. The root-problem is that the force-option copies content from one...

I would love to see that merged. In a client project I have multiple payment providers which should be used to subscribe to recurring payment-plans and I would like to...

Hey, I may have another use-case which I was thinking about today. I'm using http://github.com/graphile/postgraphile/ in a project and I wondered if there might be a way to integrate this...

To minimize performance-impact, we could check if there are any plugins defined on register(). If not, we could skip the logic to execute the hooks completely. This way the impact...

given a simple component with a $$Props-typing like: ```ts interface $$Props { size?: "s" | "m" | "l" | undefined; } ``` *without* the new tranformer, auto-completion in VSCode correctly...