-
Notifications
You must be signed in to change notification settings - Fork 97
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
fix: 일관된 한글 이름 규칙 설정 (to v2) #204
Conversation
* remove extrachHangul * Create cyan-tigers-sneeze.md --------- Co-authored-by: Jonghyeon Ko <[email protected]>
…angul이라는 글자를 제거합니다 (toss#184) * dissemble관련 메서드에서 hangul이름을 제거합니다 * 누락된 부분 수정 * resolve conflit * Create late-beers-hang.md * diassembleHangul to diassemble --------- Co-authored-by: Jonghyeon Ko <[email protected]>
* remove acronymize * Create weak-walls-sniff.md --------- Co-authored-by: Jonghyeon Ko <[email protected]>
* getChoseong분리 * write test code * getChoseong import * remove useless import statemenet * remove unused file
…도 함수로 분리합니다. (toss#193) * canBe series를 별도 함수로 분리합니다 * add change set
* hasBatchim * resolve type error * add change set * hasProperty, hasValueInReadOnlyStringList를 internal folder 로 옮깁니다 * resolve test error * move with test code
* remove choseongIncludes Co-authored-by: 서동휘 <[email protected]>
🦋 Changeset detectedLatest commit: b231729 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportAttention: Patch coverage is
|
amountToHangul의 함수명이 amountToMoneyUnit으로 바뀐 이유가 궁금합니다! |
@okinawaa 한국 통화 느낌을 강조해보았습니다 !
|
amountToHangulCurrency 좋습니다! |
@okinawaa 수정 완료했니다 ! |
@manudeli 님! |
함수가 하는 역할은 숫자 => 한글인데, "돈" 이라는 money가 들어간 이유가 궁금해요! |
우선 논의가 길어지는것 같아서 amountToHangul은 변경사항 이전으로 돌리고, |
Currency이 함수명에 포함될 필요가 없어보여요. 반드시 화폐만을 위한 기능이 아니어보여서요. 대안은 고민해보고 있습니다 |
네 알겠습니다 ! |
@Collection50 님 v2로 나아가기 위해, 이 PR의 머지가 필요해서요! 컨플릭 해결작업 진행해주시면 감사하겠습니다! 🙇 |
@okinawaa 완료했습니다 ! |
CHANGELOG.md
Outdated
## 1.5.0 | ||
|
||
### Minor Changes | ||
|
||
- [#115](https://github.com/toss/es-hangul/pull/115) [`84584d4`](https://github.com/toss/es-hangul/commit/84584d48ac5ded83c55934f0b72e37a6b889f4e1) Thanks [@po4tion](https://github.com/po4tion)! - feat: 한국어를 로마자로 변환해주는 함수와 한국어를 표준 발음법으로 변환해주는 함수를 만들고 문서화를 진행합니다 | ||
|
||
## 1.4.7 | ||
|
||
### Patch Changes | ||
|
||
- [#201](https://github.com/toss/es-hangul/pull/201) [`56db7f0`](https://github.com/toss/es-hangul/commit/56db7f0140ee369fbe0dc2dad834e8d6a218a4ea) Thanks [@BO-LIKE-CHICKEN](https://github.com/BO-LIKE-CHICKEN)! - feat: 숫자를 순 우리말 수사로 변환하거나 수 관형사로 변환하는 함수를 추가 | ||
|
||
## 1.4.6 | ||
|
||
### Patch Changes | ||
|
||
- [#198](https://github.com/toss/es-hangul/pull/198) [`e6142b0`](https://github.com/toss/es-hangul/commit/e6142b04159133dbcab6f2771baa88adf7aa4a45) Thanks [@linenumbertwo](https://github.com/linenumbertwo)! - feat: "이라/라" 케이스 추가 | ||
|
||
- [#203](https://github.com/toss/es-hangul/pull/203) [`fbe3ad6`](https://github.com/toss/es-hangul/commit/fbe3ad67f4bd796773f60f0ab04359135b03d414) Thanks [@kangju2000](https://github.com/kangju2000)! - fix: eslint CI가 제대로 작동하지 않는 문제를 수정합니다. |
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.
이 체인지 로그는 삭제된 이유가 있을까요?!
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.
잘못 삭제된 것으로 보입니다 ! 수정해두겠습니다 !
src/index.ts
Outdated
export { | ||
assemble, | ||
combineCharacter, | ||
combineVowels, | ||
curriedCombineCharacter, | ||
convertQwertyToHangul, | ||
convertQwertyToAlphabet, | ||
disassemble, | ||
disassembleToGroups, | ||
disassembleCompleteCharacter, | ||
josa, | ||
removeLastCharacter, | ||
hasBatchim, | ||
canBeChoseong, | ||
canBeJongseong, | ||
canBeJungseong, | ||
getChoseong, | ||
amountToHangul, | ||
romanize, | ||
susa, | ||
standardizePronunciation, | ||
}; |
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.
export 구문으로 바로 import 후 export 를 시키고 있었는데,
이렇게 import / export 따로 진행하신 이유가 있나요?
두번씩 작성해야하는것에 대비하여 장점을 크게 못느껴서요!
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.
수정해두겠습니다 !!
src/index.ts
Outdated
export { canBeChoseong, canBeJongseong, canBeJungseong } from './canBe'; | ||
export { getChoseong } from './getChoseong'; | ||
import { assemble } from './assemble'; | ||
import { combineCharacter, combineVowels, curriedCombineCharacter } from './combineCharacter'; |
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.
curriedCombineCharacter는 외부로 노출하지 않는것이 좋을 것 같아요
combineCharacter 로 충분히 구현가능하고 combineCharacter 함수가 매우 작은 단위이므로 요구사항을 충분히 사용하는쪽에서 구현가능하다고 생각해요!!
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.
네 알겠습니다 !
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.
너무 감사합니다!!
Overview
#191 에서 이야기를 나눈 것을 반영하여 merge 대상 브랜치를 main에서 v2로 변경합니다.
PR Checklist