You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently a global installation is required (or local) to run the audit. This is not a issue but it would helpful to run the audit using npx, this way CI/CD instructions can be reduced by calling npx npm-audit-resolver, instead of running npm install -g npm-audit-resolver and afterwards resolve-audit.
Currently running npx npm-audit-resolver results in the following
npx npm-audit-resolver
npm ERR! could not determine executable to run
I think a fairly small change is required to make this happen by adding a entry in the package.json within the bin entry.
Problem Description
Currently a global installation is required (or local) to run the audit. This is not a issue but it would helpful to run the audit using
npx
, this way CI/CD instructions can be reduced by callingnpx npm-audit-resolver
, instead of runningnpm install -g npm-audit-resolver
and afterwardsresolve-audit
.Currently running
npx npm-audit-resolver
results in the followingI think a fairly small change is required to make this happen by adding a entry in the
package.json
within thebin
entry.Let me know your thoughts about this.
The text was updated successfully, but these errors were encountered: