Skip to content

Commit 8f3d927

Browse files
committed
Merge branch 'dev' into feat/bottom-sheet-header-title
2 parents 26f30ca + 15010c3 commit 8f3d927

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1998
-476
lines changed

.changeset/fruity-drinks-mate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@seed-design/css": patch
3+
---
4+
5+
ImageFrame 내부 요소에 width, height 100%를 추가합니다

.claude/hooks/post-edit-tasks.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/bash
22
FILE_PATH=$(jq -r '.tool_response.filePath')
33

4+
EXECUTED_COMMANDS=()
5+
46
# Function to run command and exit with code 2 on failure (so Claude sees the error)
57
run_with_feedback() {
68
local output
@@ -11,6 +13,8 @@ run_with_feedback() {
1113
echo "$output" >&2
1214
exit 2
1315
fi
16+
17+
EXECUTED_COMMANDS+=("$*")
1418
}
1519

1620
# ============================================================
@@ -63,3 +67,14 @@ elif [[ "$FILE_PATH" == *"ecosystem/qvism/"* ]]; then
6367
run_with_feedback bun --filter @seed-design/qvism-cli build
6468
run_with_feedback bun --filter @seed-design/qvism-core test --dots
6569
fi
70+
71+
# ============================================================
72+
# Success feedback (only if any commands were executed)
73+
# ============================================================
74+
if [[ ${#EXECUTED_COMMANDS[@]} -gt 0 ]]; then
75+
echo "✓ All tasks completed successfully:" >&2
76+
for cmd in "${EXECUTED_COMMANDS[@]}"; do
77+
echo " - $cmd" >&2
78+
done
79+
exit 2
80+
fi

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- uses: oven-sh/setup-bun@v2
3333
with:
34-
bun-version: "1.3.7"
34+
bun-version: "1.3.8"
3535

3636
- name: Install dependencies
3737
run: bun install --frozen-lockfile

.github/workflows/continuous-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- uses: oven-sh/setup-bun@v2
3636
with:
37-
bun-version: "1.3.7"
37+
bun-version: "1.3.8"
3838

3939
- name: Install Dependencies
4040
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-alpha-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- uses: oven-sh/setup-bun@v2
3737
with:
38-
bun-version: "1.3.7"
38+
bun-version: "1.3.8"
3939

4040
- name: Restore Figma image cache
4141
if: ${{ !inputs.skip-figma-cache }}

.github/workflows/docs-deploy-production-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: oven-sh/setup-bun@v2
4040
with:
41-
bun-version: "1.3.7"
41+
bun-version: "1.3.8"
4242

4343
- name: Restore Figma image cache
4444
if: ${{ !inputs.skip-figma-cache }}

.github/workflows/docs-deploy-qa-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: oven-sh/setup-bun@v2
2828
with:
29-
bun-version: "1.3.7"
29+
bun-version: "1.3.8"
3030

3131
- name: Install Dependencies
3232
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-storybook-alpha-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- uses: oven-sh/setup-bun@v2
2929
with:
30-
bun-version: "1.3.7"
30+
bun-version: "1.3.8"
3131

3232
- name: Install Dependencies
3333
run: bun install --frozen-lockfile

.github/workflows/docs-deploy-storybook-production-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: oven-sh/setup-bun@v2
2828
with:
29-
bun-version: "1.3.7"
29+
bun-version: "1.3.8"
3030

3131
- name: Install Dependencies
3232
run: bun install --frozen-lockfile

.github/workflows/react-headless-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: oven-sh/setup-bun@v2
2323
with:
24-
bun-version: "1.3.7"
24+
bun-version: "1.3.8"
2525

2626
- name: Install dependencies
2727
run: bun install --frozen-lockfile

0 commit comments

Comments
 (0)