-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unnecessary @types/lodash on dependency #6
Comments
The same thing applies to Looking at the package manifest it seems a lot of dependencies are heavily outdated and some of them are not even used. |
This causes projects which use |
Can this get approved and merged? This looks like a super simple change and is effecting users who are using nx storybook generators.. @aschlumpf is correct there is no solid workaround |
@chrisburkejr The difference in size of the installed production dependencies is |
@THETCR Thanks for pointing this out, this actually is enough to unblock by putting this in peer deps. Sorry about the wasted downloaded data for dependencies.. |
Describe the bug
@types/lodash
is currently declared as a dependency. This is unnecessary since@types/lodash
is a build time dependency, so it should be moved todevDependency
instead.To Reproduce
Steps to reproduce the behavior:
mdx1-csf
@types/lodash
is installedExpected behavior
@types/lodash
is not installed.Additional context
I hit this issue because of a conflicting type with underscore.
The text was updated successfully, but these errors were encountered: