Jacek Tomaszewski

Results 81 comments of Jacek Tomaszewski

Settings this as the `optimizeDeps.include` fixes the issue: ```ts import type { StorybookConfig } from '@storybook/react-native-web-vite'; const config: StorybookConfig = { stories: ['../stories/**/*.mdx', '../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)'], addons: ['@storybook/addon-onboarding'], framework: { name: '@storybook/react-native-web-vite',...

So you're saying I should set `pluginBabelOptions.include` instead of `optimizeDeps.include`? But how should I do so? The `pluginBabelOptions.include` should already match `node_modules/@react-native` by default [AFAIK](https://github.com/storybookjs/storybook/blob/next/code/frameworks/react-native-web-vite/src/preset.ts#L101) — yet somehow `/node_modules/react-native-web/node_modules/@react-native/normalize-colors/index.js` file...

Furthermore, I can't still run storybook in my own Expo app. Another package I'm depending there is `@legendapp/motion` (a dependency of https://gluestack.io/ ). Now I get following error: ``` The...

In the meantime, I've just learned that `@storybook/react-native` works on web too... Somehow I was thinking that it is either "ios and android" or "web". So I've just switched away...

@ArnaudBarre would you be open to merging this now? Or, perhaps we should rework this PR, so that this doesn't become a breaking change? (e.g. by adding a third option...

This probably would finally let quill be used in SSR-based environments ( https://github.com/zenoamaro/react-quill/issues/919 ). Any idea if @slab is still maintaining this project? Wondering if it should be forked instead.

Currently this package can't be imported on SSR because it blows up with `document is not found`. One has to use dynamic `import()`s in order to use it. I wouldn't...

I think I met a similar error and I've found out that you either want to set a service class or assembler class for the resolver, but not both at...

> I am not sure we should support your usage What exactly in the linked code is something that shouldn't be supported by the library? It seems very basic and...

or, I suggest using https://github.com/mrousavy/react-native-mmkv instead. It seems faster and synchronous as well.