Clean install #348
Replies: 1 comment 3 replies
-
It depends on what changes you made to the project. Often it's easier to run into issues in repos containing multiple packages (e.g. root package and example).
Is TypeScript installed under
You have multiple versions of
Automatically fixing lint errors on save depends on your editor config. e.g.: "eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
], Your other projects may already include this in the repo if it works there. |
Beta Was this translation helpful? Give feedback.
-
FIrst of all thanks for your work on this library.
My goal is to achieve a component library, which can be used independantly but also tested through Storybook.
I follow your suggested pattern, creating components in main "src" directory and installing Storybook and stories related to theses components inside the "example" app.
At the start it was working as intended but I than face the following issues:
My main question is: Am I right trying to achieve my goal like this ? Is there common pitfalls that gets me to theses errors ?
Any advice is warmly welcome.
Beta Was this translation helpful? Give feedback.
All reactions