-
-
Notifications
You must be signed in to change notification settings - Fork 713
fix: revive wasm build #7136
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: revive wasm build #7136
Conversation
|
WalkthroughThe change shifts the instantiation of the Changes
Sequence Diagram(s)sequenceDiagram
participant Caller
participant Scanner
participant ScanContext
participant scan_folder
Caller->>Scanner: scan()
Scanner->>ScanContext: instantiate ctx
Scanner->>scan_folder: pass &ctx
scan_folder-->>Scanner: scan results
Scanner-->>Caller: return results
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. 📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (3)**/*.{rs,toml}📄 CodeRabbit Inference Engine (CLAUDE.md)
Files:
crates/biome_*/**/*📄 CodeRabbit Inference Engine (CLAUDE.md)
Files:
**/*.rs📄 CodeRabbit Inference Engine (CONTRIBUTING.md)
Files:
🧠 Learnings (11)📓 Common learnings
📚 Learning: applies to crates/biome_service/src/workspace_watcher.rs : keep the workspace state in sync with the...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_*/lib/src/lint/nursery/*.rs : when banning certain functions o...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_*/lib/src/lint/nursery/*.rs : avoid deep indentation by using ...
Applied to files:
📚 Learning: applies to crates/biome_formatter/**/context.rs : define the `htmlformatcontext` type inside a file ...
Applied to files:
📚 Learning: applies to crates/biome_parser/crates/biome_*/src/generated/ : create a `generated/` folder inside t...
Applied to files:
📚 Learning: applies to crates/biome_service/src/workspace/watcher.tests.rs : add tests for watcher workspace met...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_*/lib/src/lint/nursery/*.rs : new rules must be placed inside ...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_*/lib/src/lint/nursery/*.rs : when a rule requires semantic in...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_*/lib/src/lint/nursery/*.rs : avoid unnecessary string allocat...
Applied to files:
📚 Learning: applies to crates/biome_analyze/biome_rule_options/lib/*.rs : use boxed slices (`box<[box]>`) i...
Applied to files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
🔇 Additional comments (1)
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Sorry about that! It’s not the first time I’ve broken the playground 😬 How can I better check if it still works? |
@arendjr No worries! It was a build failure this time, so I noticed from a failed workflow notification (https://github.com/biomejs/biome/actions/runs/16779123934). For runtime issues, we could run Playwright tests before merging the sync PR, adding more tests :) |
Summary
Fixed broken WASM build after #6989.
Test Plan
Will be synced to next.biomejs.dev/playground so we can try there
Docs
N/A