-
Notifications
You must be signed in to change notification settings - Fork 174
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 dojo plugin dep #2461
Conversation
WalkthroughOhayo, sensei! The recent changes involve modifications to the Changes
Sequence Diagram(s)sequenceDiagram
participant Package
participant MetadataFunction
participant ProfileConfig
Package->>MetadataFunction: Check for "dojo" dependency
alt Dependency exists
MetadataFunction->>Package: Gather metadata
else Dependency does not exist
MetadataFunction->>ProfileConfig: Attempt to load profile configuration
alt Profile config found
ProfileConfig-->>MetadataFunction: Provide default namespace
MetadataFunction->>Package: Create DojoMetadata with namespace
else Profile config not found
MetadataFunction->>Package: Return default DojoMetadata
end
end
Recent review detailsConfiguration used: .coderabbit.yaml Files ignored due to path filters (2)
Files selected for processing (2)
Files not reviewed due to no reviewable changes (1)
Additional comments not posted (1)
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 using PR comments)
Other keywords and placeholders
Documentation and Community
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2461 +/- ##
==========================================
+ Coverage 68.29% 68.32% +0.02%
==========================================
Files 365 365
Lines 48034 48040 +6
==========================================
+ Hits 32805 32821 +16
+ Misses 15229 15219 -10 ☔ View full report in Codecov by Sentry. |
For historical reasons, we were fetching the dojo plugin with scarb. However, the plugin is actually loaded in
sozo
binary.Hence, we don't need to fetch this plugin, which will also allow decoupling of Dojo core in an other repo and ease the fetch of Dojo core by downstream usages in game development.
Summary by CodeRabbit
New Features
Chores
dojo_plugin
dependency to streamline project management.