skott@0.35.0
github-actions
released this
15 Jun 16:47
·
10 commits
to main
since this release
Minor Changes
-
#162
b13d3c9
Thanks @antoine-coulon! - Allow unused files to be tracked and reported. From the CLI,--showUnusedFiles
can be used to report unused files. From the API, a newcollectUnusedFiles
method is accessible through the graph API:import skott from "skott"; const instance = await skott(); const unusedFiles = instance.useGraph().collectUnusedFiles();
This version also includes a fix for a bug related to
--trackBuiltinDependencies
and--trackThirdPartyDependencies
that were not propagated anymore (since 0.34.0) when being provided from the CLI. -
#161
4d19c97
Thanks @antoine-coulon! - Add support for multiple ignore patterns:- the CLI can now accumulate multiple ignore patterns such as
skott --ignorePattern=X --ignorePattern=Y
- the API configuration now takes a
ignorePatterns
property instead of a singleignorePattern
(breaking change).
- the CLI can now accumulate multiple ignore patterns such as
Patch Changes
-
#163
efb106a
Thanks @antoine-coulon! - Upgrade to Effect v3 -
#159
8cb4f1c
Thanks @antoine-coulon! - Fix skott performance timing in the CLI