diff --git a/Changelog.md b/Changelog.md index ae89351e3..5ed6bca04 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ -# Unreleased +# v2.5.18 + +- Add --depth 1000 to npm ls #240 ([#240](https://github.com/fossas/spectrometer/pull/240))) + +# v2.5.17 + - Fix `fossa container analyze` `--project` and `--revision` flags ([#238](https://github.com/fossas/spectrometer/pull/238))) + # v2.5.16 - Support for manually specified dependencies through `fossa-deps.yaml` ([#236](https://github.com/fossas/spectrometer/pull/236)) diff --git a/src/Strategy/Node/NpmList.hs b/src/Strategy/Node/NpmList.hs index 750449089..607ca81e0 100644 --- a/src/Strategy/Node/NpmList.hs +++ b/src/Strategy/Node/NpmList.hs @@ -15,7 +15,7 @@ import Path npmListCmd :: Command npmListCmd = Command { cmdName = "npm" - , cmdArgs = ["ls", "--json", "--production"] + , cmdArgs = ["ls", "--json", "--production", "--depth", "1000"] , cmdAllowErr = NonEmptyStdout }