Skip to content

skott@0.35.0

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Jun 16:47
· 10 commits to main since this release
f382079

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 new collectUnusedFiles 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 single ignorePattern (breaking change).

Patch Changes