Ari Picker

Results 14 comments of Ari Picker

Thanks for your input @IOIIOOIO! I thought of that and came to the same conclusion. Was looking for something less verbose.

This is awesome @Westbrook, I'm sure alot of people are excited about it. This will probably change, but currently I only want to pass HTML attributes that exist on an...

I'm having the same issue. How do you exclude `node_modules` from the coverage output? Ive tried multiple variants of excluding `node_modules` from the config. The below is a kitchen sink...

Thanks @Westbrook . Tried that too, i must have something else wrong.

Is there some undocumented trick you're using for local dev or are you constantly rebuilding every time there's component change that needs to be reflected in storybook? Inquiring minds... Thank...

Thanks @muratcorlu . I saw that, I get both approaches; playground and `npm run build`. I find more value w/Storybook for local dev. It's better DX. I deploy the static...

I got Storybook + lit to work w/vite HMR very easily @muratcorlu . I mean yeah, its full page refresh, not technically HMR, but it's fast + good enough. I...

this was all i needed to get storybook to work w/lit @muratcorlu ... didn't even need a `vite.config.ts`... ```ts // .storybook/main.ts import { mergeConfig } from 'vite'; import type {...

yes, @muratcorlu, we're importing WCs... ```ts import { Meta, StoryObj } from '@storybook/web-components' import { html } from 'lit' import './my-element' export default { title: 'My Element', parameters: { layout:...