Boaris

Results 27 comments of Boaris

+1 I also want to review my entire vault but tagging each note feels overwhelming. Or it could be an option like for flashcards: `Convert folders to decks and subdecks?`

> Where did you add the --quiet flag? Not the author, but this should be added as a lint-staged option: ``` lint-staged --quiet // or npm run lint-staged -- --quiet...

Will `react-docgen-typescript` be removed then? Just in case, I use TypeScript and want to leverage from union types.

@pal-anish, the component code I mentioned above is not a Storybook feature at all, it's just a React component. Or could you please clarify what do you mean by "a...

I had a similar problem but with `--passWithNoTests`. The following syntax helped me: ``` test-storybook --coverage -- --passWithNoTests ``` Pay attention to the `--` part.

Moreover, the actual text didn't change ![image](https://github.com/ianstormtaylor/slate/assets/31354262/f436c803-d348-4af7-90b7-d2f697bd2727)

Also, keep in mind that you have to set [cwd](https://github.com/TriPSs/nx-extend/blob/master/packages/strapi/src/executors/build/build.impl.ts#L25) to `process.cwd()` because if you run `npx strapi build` in an application folder (not root), the build will fail since...

Also, with the following Toggle: ```tsx const Toggle = classed('div', Button, { defaultVariants: { size: 'sm', variant: 'ghost', }, variants: { size: { sm: '', }, variant: { ghost: '',...

And the most unavoidable: Providing Tailwind classes to the extended component overrides the base ones: ```tsx const Button = classed('button', { defaultVariants: { variant: 'default', }, variants: { variant: {...

> > Providing Tailwind classes to the extended component overrides the base ones: > > This is intended behavor Thus, there's no way to actually extend components with additional classes....