-
-
Notifications
You must be signed in to change notification settings - Fork 616
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
dev CLI: cleanup deprecated background worker files (fixes #1572) #1595
Conversation
🦋 Changeset detectedLatest commit: 0b838f2 The changes in this PR will be included in the next version bump. This PR includes changesets to release 12 packages
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 |
Caution Review failedThe pull request is closed. Warning There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure. 🔧 eslint
packages/cli-v3/src/commands/dev.tsOops! Something went wrong! :( ESLint: 8.45.0 ESLint couldn't find the config "custom" to extend from. Please check that the name of the config is correct. The config "custom" was referenced from the config file in "/.eslintrc.js". If you still have problems, please stop by https://eslint.org/chat/help to chat with the team. WalkthroughThe pull request introduces enhancements to the Trigger.dev CLI development workflow, focusing on temporary file management and worker runtime configuration. The changes add a new Changes
Sequence DiagramsequenceDiagram
participant CLI as Dev CLI
participant Session as DevSession
participant Worker as WorkerRuntime
participant BgWorker as BackgroundWorker
CLI->>Session: Start with keepTmpFiles option
Session->>Session: Configure temp directory
Session->>Worker: Initialize worker
Worker->>BgWorker: Create background worker
Worker-->>Worker: Check initialization conditions
alt Initialization Fails
Worker->>BgWorker: Stop worker
end
Session-->>CLI: Complete development session
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (6)
Finishing Touches
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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@trigger.dev/build
trigger.dev
@trigger.dev/core
@trigger.dev/react-hooks
@trigger.dev/rsc
@trigger.dev/sdk
commit: |
66df49e
to
0b838f2
Compare
Summary by CodeRabbit
Release Notes
New Features
--keep-tmp-files
option for development sessions, allowing users to retain temporary files for debugging purposesImprovements
Bug Fixes