Skip to content

Commit c857767

Browse files
committed
chore: 🤖 code review suggestions
1 parent c107ecf commit c857767

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.changeset/nine-queens-allow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
'@clickhouse/click-ui': minor
2+
'@clickhouse/click-ui': patch
33
---
44

55
Add circular dependency check to prevent and detect circular import cycles that can cause build issues, runtime errors, and bundle size problems.

.scripts/bash/circular-dependency-check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo "🔍 Checking for circular dependencies in $ENTRY_POINT..."
88
echo ""
99

1010
TEMP_OUTPUT=$(mktemp)
11-
trap "rm -f $TEMP_OUTPUT" EXIT
11+
trap 'rm -f "$TEMP_OUTPUT"' EXIT
1212

1313
if command -v yarn &> /dev/null; then
1414
yarn exec skott "$ENTRY_POINT" \

0 commit comments

Comments
 (0)