- #99
fe12bc2
Thanks @calebeby! - Force the initial path to be included in the crawling regardless of include/exclude flags
-
#77
4d21edc
Thanks @calebeby! - Update DependenciesThe most significant change is that Lighthouse has been updated from
^6.4.0
to^9.5.0
. For most people, the changes will be non-breaking, but throughout the versions the scores have been changed
-
0efa5a0
#65 Thanks @calebeby! - Add options:--max-crawl-depth
,--include-path-glob
,--exclude-path-glob
--max-crawl-depth
: Control the maximum depth of crawled links. 1 means only the entry page will be used. 2 means the entry page and any page linked directly from the entry page will be used.--include-path-glob
: Specify a glob (in quotes) for paths to match. Links to non-matched paths will not be crawled. The entry page will be crawled regardless of this flag. This flag can be specified multiple times to allow multiple paths.*
matches one url segment,**
matches multiple segments. Trailing slashes are ignored.--exclude-path-glob
: Specify a glob (in quotes) for paths to exclude. Links to matched paths will not be crawled. The entry page will be crawled regardless of this flag. This flag can be specified multiple times to exclude multiple paths.*
matches one url segment,**
matches multiple segments. Trailing slashes are ignored.
-
035f73f
#45 Thanks @calebeby! - Reoorganize code to make testing easier- Reduce CLI output
- Run lighthouse on URLs even if there are already reports saved for those URLs