Jianchun Wang

Results 12 comments of Jianchun Wang

i submitted a pull request https://github.com/styled-components/styled-components/pull/3225 because i did not see that the namespaces work... and we really need that feature to work, please 🙏

there was no rule for mjs files in my webpack config, so i added this in `module.rules` ``` { test: /\.mjs$/, include: /node_modules/, type: 'javascript/auto', resolve: { fullySpecified: false }...

Update. It's NOT just Esc, but all other shortcut keys, like `a`、`f`、`t`...

I use [ncu](https://www.npmjs.com/package/npm-check-updates) and npm script to do the job, like this: 1. `npm install npm-check-updates --save-dev` 2. add npm script `"ncu:packages": "lerna exec --no-bail -- ncu --timeout=60000"` in the...

makes great sense, but the format might be like `xx: ['error', scope?]', where scope default is all

> l miss add "setup" in . it;s works when l take it to in .vue file. hope helping for you. every script in my project uses setup, and this...

the main.ts is quite simple ```ts import { type StorybookConfig } from '@storybook/react-vite'; export default { stories: ['../stories/**/*.stories.@(ts|tsx)'], addons: [ '@storybook/addon-docs', '@storybook/addon-links', '@chromatic-com/storybook' ], framework: '@storybook/react-vite' } satisfies StorybookConfig; ```

I would assume it has something to do with version 9.1.8. My other project which is still using 9.1.7 is good with the same DeprecationWarning. So could you look into...

Just tried the solution, seem like it did not work though. Still taking 1 minute to start.

> Hi [@justnewbee](https://github.com/justnewbee) thanks for reporting this. do you have a reproduction repo you can share? We prioritize bug reports that have reproduction. Thank you! 🙏 I Made this very...