-
Notifications
You must be signed in to change notification settings - Fork 0
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: remove dependencies #149
Conversation
🦋 Changeset detectedLatest commit: 6cef2cd The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
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 |
Warning Rate Limit Exceeded@mew-ton has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 26 minutes and 17 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Walkthrough全体としての変更は、型の扱いを簡素化し、より具体的な型指定に移行することに焦点を当てています。特に、 Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Review Status
Actionable comments generated: 2
Configuration used: CodeRabbit UI
Files ignored due to path filters (3)
package.json
is excluded by:!**/*.json
tsconfig.json
is excluded by:!**/*.json
yarn.lock
is excluded by:!**/*.lock
Files selected for processing (4)
- src/lib/modifier.ts (3 hunks)
- test/omit.bench.ts (2 hunks)
- test/pick.bench.ts (2 hunks)
- test/utils/factory.ts (6 hunks)
Additional comments: 9
test/omit.bench.ts (2)
- 4-4:
Dictionary
型のインポートが追加されました。この変更は、外部依存性を削除し、型の明確性を向上させる目的で行われています。- 27-27:
TestCase
インターフェースのobject
プロパティの型がDictionary
に更新されました。これにより、型の内部一貫性が向上しています。test/pick.bench.ts (2)
- 4-4:
Dictionary
型のインポートが追加されました。この変更は、外部依存性を削除し、型の明確性を向上させる目的で行われています。- 27-27:
TestCase
インターフェースのobject
プロパティの型がDictionary
に更新されました。これにより、型の内部一貫性が向上しています。test/utils/factory.ts (3)
- 1-1:
Dictionary
型のインポートが追加されました。この変更は、型の明確性を向上させる目的で行われています。- 10-10:
createRandomObject
関数の戻り値の型がDictionary
に更新されました。これにより、型の明確性が向上しています。- 34-34:
createObject
関数の戻り値の型がDictionary
に更新されました。これにより、型の明確性が向上しています。src/lib/modifier.ts (2)
- 1-1:
Dictionary
およびDictionaryLeaf
型のインポートが確認されました。これは型の明確性を向上させるための変更です。- 1-1:
ObjectModifier
インターフェースのメソッドシグネチャが簡素化され、string
キーを直接受け入れるように変更されました。これにより、キーの取り扱いが標準化されます。
@@ -52,8 +52,8 @@ export function createRandomObject({ leafs }: RandomObjectOption): JsonObject { | |||
return obj | |||
} | |||
|
|||
function createArray(): JsonArray { | |||
const arr: Writable<JsonArray> = [] | |||
function createArray(): Dictionary { |
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.
createArray
関数の戻り値の型が誤って Dictionary
になっています。配列を返すべき関数の戻り値の型が辞書型になっているため、これは不適切です。
- function createArray(): Dictionary {
+ function createArray(): any[] {
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
function createArray(): Dictionary { | |
function createArray(): any[] { |
@@ -67,7 +67,7 @@ export function createRandomObject({ leafs }: RandomObjectOption): JsonObject { | |||
return arr | |||
} | |||
|
|||
function createValue(): JsonValue { | |||
function createValue(): Dictionary { |
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.
createValue
関数の戻り値の型が Dictionary
に更新されましたが、この関数は複数の異なる型の値を返す可能性があるため、Dictionary
型は適切ではありません。
- function createValue(): Dictionary {
+ function createValue(): any {
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
function createValue(): Dictionary { | |
function createValue(): any { |
CodSpeed Performance ReportMerging #149 will not alter performanceComparing Summary
|
Summary by CodeRabbit
ObjectModifier
インターフェースのget
とset
メソッドが、一般的なK extends string
からstring
キーを受け入れるように変更されました。type-fest
からローカルの~/type
に変更し、TestCase
インターフェースのobject
プロパティの型をJsonObject
からDictionary
に更新しました。