-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
fix(vite): allow force ignore of logs from nxViteTsPaths plugin #29320 #30200
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
View your CI Pipeline Execution ↗ for commit fe8ac38.
☁️ Nx Cloud last updated this comment at |
371c907
to
0a2a6ba
Compare
@@ -24,6 +24,7 @@ import { isUsingTsSolutionSetup } from '@nx/js/src/utils/typescript/ts-solution- | |||
export interface nxViteTsPathsOptions { | |||
/** | |||
* Enable debug logging | |||
* If set to 'force-ignore', it will always ignore the debug logging even when `--verbose` or `NX_VERBOSE_LOGGING` is set to true. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should remove the mention of force-ignore
Co-authored-by: Leosvel Pérez Espinosa <[email protected]>
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
When Vite build is run where:
nxViteTsPaths
plugin is enabled--verbose
orNX_VERBOSE_LOGGING=true
is setThe resulting logs can be quite noisy.
Expected Behavior
When
debug
is explicitly set to false, ignore logs even when--verbose
is passed.Usage:
Related Issue(s)
Fixes #29320