Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

프로젝트 환경 설정 변경 #168

Merged
merged 5 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,6 @@ body:
description: 버그를 발견하게 된 상황을 단계별로 적어주세요!
validations:
required: true
- type: textarea
attributes:
label: 로그
description: 로그가 있으면 원본 그대로 복사하여 넣어주세요!
render: shell
validations:
required: false
- type: textarea
attributes:
label: 환경
description: 버그가 발생한 환경에 대해 작성해 주세요!
placeholder: |
OS: macOS 12.2.1
validations:
required: false
- type: textarea
attributes:
label: ETC
Expand Down
8 changes: 4 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Summary

> PR에 대한 목적을 한 줄 요약하여 여기에 작성해주세요.
> 관련 있는 Issue를 태그해주세요.

추가적으로 간단한 설명을 해주세요.
**해당 PR에 대한 요약을 작성해주세요.**

## Tasks

Expand All @@ -11,8 +11,8 @@

## ETC

더 전달할 내용이 있다면 여기에 작성해주세요.
_(없을 경우 삭제) 더 전달할 내용이 있다면 여기에 작성해주세요._

## Screenshot

작업한 내용에 대한 스크린샷을 첨부해주세요.
_(없을 경우 삭제) 작업한 내용에 대한 스크린샷을 첨부해주세요._
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.14.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# clab.page · [![MIT License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](https://github.com/kgu-c-lab/clab.page/blob/main/LICENSE) [![pnpm CI](https://github.com/KGU-C-Lab/clab.page/actions/workflows/pnpm-ci.yml/badge.svg)](https://github.com/KGU-C-Lab/clab.page/actions/workflows/pnpm-ci.yml)
# clab.page · [![MIT License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](https://github.com/kgu-c-lab/clab.page/blob/main/LICENSE) [![pnpm CI](https://github.com/KGU-C-Lab/clab.page/actions/workflows/pnpm-ci.yml/badge.svg)](https://github.com/KGU-C-Lab/clab.page/actions/workflows/pnpm-ci.yml) [![codecov](https://codecov.io/gh/KGU-C-Lab/clab.page/graph/badge.svg?token=Z5PFR6US6Z)](https://codecov.io/gh/KGU-C-Lab/clab.page)

경기대학교 AI컴퓨터공학부 개발동아리 [C-Lab](https://www.clab.page/)의 공식 프론트엔드 시스템이에요.
지속적으로 늘어나는 프론트엔드 프로젝트를 유연하고 생산성 있게 관리하기 위해 [모노레포(Monorepo)](https://en.wikipedia.org/wiki/Monorepo) 환경으로 만들어졌어요.
Expand Down Expand Up @@ -45,7 +45,7 @@ Server, Infra, Back-end에 대한 정보는 다른 저장소에서 확인할 수

## Contributing

동아리원이 아니더라도 누구나 기여할 수 있습니다. 해당 프로젝트에 기여하고 싶다면 아래 문서를 참고해주세요.
동아리원이 아니더라도 누구나 기여할 수 있습니다. 해당 프로젝트에 기여하고 싶다면 아래 문서를 참고해주세요.

[CONTRIBUTING.md](CONTRIBUTING.md)

Expand Down
12 changes: 12 additions & 0 deletions packages/design-system/vitest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ export default defineConfig({
globals: true,
environment: 'jsdom',
setupFiles: ['./vitest.setup.ts'],
coverage: {
include: ['src/**/*.{ts,tsx}'],
exclude: [
'**/index.ts',
'**/constants.ts',
'**/*.stories.tsx',
'**/*.styles.ts',
'**/*.config.js',
'**/*types.ts',
'**/*.{spec,test}.{ts,tsx}',
],
},
exclude: [...configDefaults.exclude, '**/node_modules/**'],
},
});
Loading