File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
packages/carousel/src/types Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 61
61
pnpm --filter @watcha/carousel build
62
62
echo "carousel 빌드 완료!"
63
63
64
+ # CSS 파일 복사 (TypeScript가 복사하지 않는 경우)
65
+ if [ -d "packages/carousel/src/styles" ]; then
66
+ echo "=== CSS 파일 복사 ==="
67
+ mkdir -p packages/carousel/dist/src/styles
68
+ cp -r packages/carousel/src/styles/* packages/carousel/dist/src/styles/ || echo "CSS 파일 복사 실패"
69
+ fi
70
+
64
71
# 빌드 결과 확인
65
72
echo "carousel 빌드 결과 확인:"
66
73
ls -la packages/carousel/dist/ || echo "ERROR: carousel dist 디렉토리가 생성되지 않음!"
80
87
- name : Run type check
81
88
run : |
82
89
echo "=== 타입 체크 실행 ==="
90
+ echo "현재 작업 디렉토리: $(pwd)"
91
+ echo "carousel dist 디렉토리 확인:"
92
+ ls -la packages/carousel/dist/ || echo "carousel dist 디렉토리가 없음"
93
+ echo "CSS 파일 확인:"
94
+ ls -la packages/carousel/dist/src/styles/ || echo "CSS 파일이 없음"
95
+ echo "type-check 실행 중..."
83
96
pnpm type-check
84
97
echo "타입 체크 완료!"
85
98
Original file line number Diff line number Diff line change
1
+ declare module '*.css' {
2
+ const content : string ;
3
+ export default content ;
4
+ }
You can’t perform that action at this time.
0 commit comments