We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
webpro
Learn more about funding links in repositories.
Report abuse
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
When using knip to detect unused cli commands following example would detect esbuild as correctly being used:
# package.json { "scripts": { "build:esbuild": "esbuild src/index.ts --outdir=build", } }
➜ pnpm knip Unused dependencies (2) eslint package.json eslint-config-next package.json
But when invoking this command with nx to enable caching, knip lists esbuild as unused dependency:
# package.json { "scripts": { "build:esbuild": "nx exec -- esbuild src/index.ts --outdir=build", } }
➜ pnpm knip Unused dependencies (2) eslint package.json eslint-config-next package.json Unused devDependencies (1) esbuild package.json
The text was updated successfully, but these errors were encountered:
5ba99e7
🚀 This issue has been resolved in v2.25.0. See Release 2.25.0 for release notes.
Sorry, something went wrong.
Thanks @ChiefORZ, added the Nx binary resolver.
No branches or pull requests
When using knip to detect unused cli commands following example would detect esbuild as correctly being used:
But when invoking this command with nx to enable caching, knip lists esbuild as unused dependency:
The text was updated successfully, but these errors were encountered: