Skip to content

Commit

Permalink
Merge pull request #16 from BCSDLab/feat/clear-package
Browse files Browse the repository at this point in the history
미사용 패키지 제거, 빌드 명령어 최신화, 버전 추가
  • Loading branch information
ChoiWonBeen authored Apr 7, 2024
2 parents 62f987a + e629d69 commit f52dc7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/PACKAGE_PUBLISH_ACTION.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: build tsc with clean
run: npm run build

- name: Commit build artifacts
- name: Commit build artifacts and changes
run: |
git add dist
git commit -m "Build artifacts" || true
git add .
git commit -m "Prepare release" || true
- name: version patch
run: npm version patch
Expand Down
1 change: 0 additions & 1 deletion src/cn/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ interface Classname {
[key: string]: boolean;
}

/** 여러 개의 className을 합치는 함수 */
export function cn(classes: Classname) {
return Object.entries(classes)
.filter(([, value]) => value)
Expand Down

0 comments on commit f52dc7a

Please sign in to comment.