-
Notifications
You must be signed in to change notification settings - Fork 1
feat: 디자인 토큰 연결 #11
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
Closed
Closed
feat: 디자인 토큰 연결 #11
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
39ab474
feat: 피그마와 연결
dasosann 0b7ea71
디자인 토큰 추출 후 push
dasosann ed861f3
feat: 토큰 업데이트를 위한 토큰 삭제
dasosann 08a24db
feat: 색상 토큰 생성을 위한 스크립트 추가 및 패키지 설정 업데이트
dasosann 5e9c3f3
fix: 디자인 토큰 변경
dasosann 01e6c8d
Merge branch 'main' of https://github.com/Team-Cheeeese/FE into featu…
dasosann 6b7d20a
Merge branch 'feature/design-token' of https://github.com/Team-Cheeee…
dasosann 0e7d26e
fix: eslint 설정에 scripts 디렉토리 무시 추가
dasosann f6aa8dd
fix: token 생성 위치 변경
dasosann 3008126
fix: 디자인 토큰 변경
dasosann e8164f9
fix: 색상 토큰을 globals.css로 이동하고 token.json 파일 삭제
dasosann e2a5f71
fix: 디자인 토큰 수정
dasosann 40affbb
fix: 디자인 토큰 재시도
dasosann 290dab1
fix: 토큰 생성 위치 변경
dasosann f114a12
feat: 디자인 시스템 자동화 로직 완성 및 폰트 추가
dasosann 27b7213
feat: 디자인 시스템 완성 및 전역 폰트 추가
dasosann ff9f208
Merge branch 'feature/design-token' of https://github.com/Team-Cheeee…
dasosann f18b017
fix: 코드 스타일 통일 및 불필요한 줄 제거
dasosann c81f0ab
fix: 불필요한 줄 제거 및 코드 스타일 통일
dasosann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "global": {}, | ||
| "$themes": [], | ||
| "$metadata": { | ||
| "tokenSetOrder": [ | ||
| "global" | ||
| ] | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파일의 마지막에 개행 문자를 추가하는 것을 권장합니다. 이는 POSIX 표준을 따르는 좋은 관행이며, 일부 도구에서 예기치 않은 동작을 방지할 수 있습니다.1
Rules References
Footnotes
파일은 개행 문자로 끝나야 합니다. 이는 POSIX 호환성을 보장하고, 파일 결합이나
cat과 같은 도구 사용 시 발생할 수 있는 문제를 방지합니다. ↩