<#19819 JavaScript dependency inference does not r...
# github-notifications
c
#19819 JavaScript dependency inference does not read export statements Issue created by AlexTereshenkov Describe the bug Parser used to statically analyze JavaScript sources doesn't take into considerations the `export` statements:
Copy code
export { default } from './LocalFile';
export { default as MyFoo } from './LocalFile'
Pants version 2.18.0a0 OS N/A Additional info The parser should be extended to list modules discovered via the
export
statement. pantsbuild/pants