diff --git a/scripts/percy-skip-deps.sh b/scripts/percy-skip-deps.sh index 4ac304fdc..1a6e87f6a 100755 --- a/scripts/percy-skip-deps.sh +++ b/scripts/percy-skip-deps.sh @@ -16,6 +16,9 @@ git log --no-merges --name-only --pretty=format: ${RANGE} | grep -Ev '^$' | sort if [[ "${FILE}" =~ ^ui/src/.+ ]]; then echo "[P] ${FILE}" exit 1 + elif [[ "${FILE}" =~ ^ui/.storybook/.+ ]]; then + echo "[P] ${FILE}" + exit 1 elif [[ "${FILE}" == "ui/package.json" ]]; then echo "[?] ${FILE}" git diff --no-prefix --diff-filter=M --unified=0 ${RANGE} -- ui/package.json | grep -E '^\+ ' | tr -d '":,' | while read I NAME VERSION ; do