Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
dotfiles-worker | bf1a3a2 | Mar 22 2026, 12:06 AM |
There was a problem hiding this comment.
Pull request overview
This PR migrates from custom buni tasks to mise's built-in prepare feature for managing Bun dependency installation. The change consolidates dependency management into mise's native functionality, eliminating the need for custom task orchestration.
- Replaces custom
buni:rootandbuni:workertasks withprepare.bunandprepare.bun_workerconfigurations - Removes all
depends = ["buni:*"]dependencies from task definitions - Updates the GitHub workflow to use
mise prepare --only buninstead of the custom task
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
mise.toml |
Adds prepare.bun and prepare.bun_worker configurations with auto-run enabled; updates postinstall hook |
tasks.toml |
Removes buni:root task definition and dependencies on it from commit, check:tsc:root, and check:jsonschema tasks |
worker/tasks.toml |
Removes buni:worker task definition and dependencies on it from type checking and generation tasks |
worker/tasks/worker/build |
Removes buni:worker dependency |
cspell.config.cjs |
Removes "buni" from the custom words dictionary |
.github/workflows/lint.yml |
Updates to use mise prepare --only bun instead of mise run buni:root |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| """ | ||
|
|
||
| [prepare.bun] | ||
| auto = true |
There was a problem hiding this comment.
The prepare.bun configuration is missing sources and outputs fields that would enable proper dependency tracking and caching. Similar to prepare.bun_worker, this should include sources = ["bun.lock", "package.json"] and outputs = ["node_modules"] to ensure the prepare step only runs when dependencies change.
| auto = true | |
| auto = true | |
| sources = ["bun.lock", "package.json"] | |
| outputs = ["node_modules"] |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
No description provided.