[FEATURE](arborist) add trackers for `audit`
Audits can take a while. Let's put some tracker spinners in there so that the user has some idea what's going on.
This issue has been resolved! The audit progress tracker was implemented in PR #7237 (commit 6d1789cd5f) on February 28, 2024.
Implementation The progress tracking was added to the audit() method in index.js:
this.addTracker('audit') is called at the start of the audit this.finishTracker('audit') is called when the audit completes The progress spinner appears during npm audit operations in interactive terminal sessions, particularly when audits take longer to complete (e.g., with slow network connections or large dependency trees).
Could a maintainer please close this issue as the requested feature has been implemented?