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
We currently output a log entry per file, per replacement.
For example, if you have foo.ts and bar.ts which both contain a bad module, you will see two logs.
foo.ts
bar.ts
Ideally, we make this more concise like so:
Module `blah` could be replaced by the following: {some url} In files: - package.json - foo.ts - bar.ts
We should be careful when building this logic, though, as we need to avoid keeping a buffer of all files in memory.
We can't simply loop through all files/replacements and build a result set up, as that will take too much memory in large projects.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We currently output a log entry per file, per replacement.
For example, if you have
foo.ts
andbar.ts
which both contain a bad module, you will see two logs.Ideally, we make this more concise like so:
We should be careful when building this logic, though, as we need to avoid keeping a buffer of all files in memory.
We can't simply loop through all files/replacements and build a result set up, as that will take too much memory in large projects.
The text was updated successfully, but these errors were encountered: