From 13e3af227682e9a5ad8b70db6862882ef16e0f9d Mon Sep 17 00:00:00 2001 From: tees Date: Wed, 24 Feb 2021 18:40:19 -0500 Subject: [PATCH] Fix: changelog cmd should use `npx` --- bin/changelog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/changelog.sh b/bin/changelog.sh index 23eaa229..8960c17f 100755 --- a/bin/changelog.sh +++ b/bin/changelog.sh @@ -7,7 +7,7 @@ set -euo pipefail # - conventional-changelog (https://www.npmjs.com/package/conventional-changelog-cli) # - trash (brew install trash) -conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 2 +npx conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 2 # This script indents the `### Bug Fixes` and `### Features` lines because I think they should be level 4 headings. sed -i'.original' -e 's/^### Bug Fixes$/#### Bug Fixes/g' CHANGELOG.md