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
8c53b2c: Removed the includeDotPaths config option and associated argument. It was a mistake. If you need a path that starts with a . to be included, explicitly list it in the includeGlobs configuration or the paths passed to the CLI command.
4066145: Include dot paths when parsing include globs. This is a breaking change as this is turned on by default. To turn off, use the --includeDotPaths=false or explicitly set includeDotPaths in your config file.
Minor Changes
38b0cbe: Fix bug with output sink and improve error messaging when root marker cannot be found
Patch Changes
c243766: Allow color output to be disabled using NO_COLOR=1 or FORCE_COLOR=0
6ed7f08: This fixes an issue where default argument values would override explicit configuration. This was unintentional; only explicitly provided argument values should override configuration. Since some folks may be relying on this broken behaviour, this is a major update. As part of this fix, argument parsing is now handled by yargs instead of minimist