We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Am I wrong to believe the current logic won't handle transitive dependencies?
If I define foo in my dependencies list, and foo defines bar. Only foo will be added to the external list. Is this correct?
foo
dependencies
bar
external
In case, is there any chance to have this addressed?
The text was updated successfully, but these errors were encountered:
Possibly package-lock.json could be sourced for this? Recursive read of the requires block of each dependency.
package-lock.json
requires
Sorry, something went wrong.
Maybe: require.resolve(moduleName).includes('/node_modules/')
require.resolve(moduleName).includes('/node_modules/')
No branches or pull requests
Am I wrong to believe the current logic won't handle transitive dependencies?
If I define
foo
in mydependencies
list, andfoo
definesbar
. Onlyfoo
will be added to theexternal
list. Is this correct?In case, is there any chance to have this addressed?
The text was updated successfully, but these errors were encountered: