Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cli/watch.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This command uses the `watchexec` tool to watch for changes to files and rerun t
It must be installed for this command to work, but you can install it with `mise use -g watchexec@latest`.

For more advanced process management (daemon management, auto-restart, readiness checks,
cron scheduling), see mise's sister project: https://pitchfork.jdx.dev
cron scheduling), see mise's sister project: https://pitchfork.en.dev

## Arguments

Expand Down
2 changes: 1 addition & 1 deletion docs/external-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Links to articles, videos, and other resources that are relevant to mise.

- 2025-04-09 - Keeping your Swift apps' sensitive data secret - <https://tuist.dev/blog/2025/04/09/secrets>
- 2025-02-17 - hk: git hook manager that pairs well with mise - <https://hk.jdx.dev>
- 2025-02-17 - pitchfork: process manager for developers that pairs well with mise - <https://pitchfork.jdx.dev>
- 2025-02-17 - pitchfork: process manager for developers that pairs well with mise - <https://pitchfork.en.dev>
- 2025-02-04 - A Mise guide for Swift developers - <https://tuist.dev/blog/2025/02/04/mise>
- 2025-01-26 - devtools.fm: Jeff Dickey - Mise, Usage, and Pitchfork and the Future of Polyglot Tools - <https://www.devtools.fm/episode/129>
- 2025-01-12 - [fr] Mise-En-Place: Simplifiez la Gestion de vos Environnements et Tâches – <https://blog.stephane-robert.info/docs/developper/autres-outils/mise-en-place/>
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ You can leverage usage in file tasks to get auto-completion working, see [file t

## What is pitchfork?

pitchfork (<https://pitchfork.jdx.dev/>) is a process manager for developers.
pitchfork (<https://pitchfork.en.dev/>) is a process manager for developers.

It handles daemon management with features like automatic restarts on failure, smart readiness checks, shell-based auto-start/stop when entering project directories, and cron-style scheduling for periodic tasks.

Expand Down
2 changes: 1 addition & 1 deletion man/man1/mise.1
Original file line number Diff line number Diff line change
Expand Up @@ -3463,7 +3463,7 @@ This command uses the `watchexec` tool to watch for changes to files and rerun t
It must be installed for this command to work, but you can install it with `mise use \-g watchexec@latest`.

For more advanced process management (daemon management, auto\-restart, readiness checks,
cron scheduling), see mise's sister project: https://pitchfork.jdx.dev
cron scheduling), see mise's sister project: https://pitchfork.en.dev
.PP
\fBUsage:\fR mise watch [OPTIONS] [<TASK>] [<ARGS>] ...
.PP
Expand Down
2 changes: 1 addition & 1 deletion mise.usage.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ cmd version help="Display the version of mise" {
}
cmd watch help="Run task(s) and watch for changes to rerun it" {
alias w
long_help "Run task(s) and watch for changes to rerun it\n\nThis command uses the `watchexec` tool to watch for changes to files and rerun the specified task(s).\nIt must be installed for this command to work, but you can install it with `mise use -g watchexec@latest`.\n\nFor more advanced process management (daemon management, auto-restart, readiness checks,\ncron scheduling), see mise's sister project: https://pitchfork.jdx.dev"
long_help "Run task(s) and watch for changes to rerun it\n\nThis command uses the `watchexec` tool to watch for changes to files and rerun the specified task(s).\nIt must be installed for this command to work, but you can install it with `mise use -g watchexec@latest`.\n\nFor more advanced process management (daemon management, auto-restart, readiness checks,\ncron scheduling), see mise's sister project: https://pitchfork.en.dev"
after_long_help "Examples:\n\n $ mise watch build\n Runs the \"build\" tasks. Will re-run the tasks when any of its sources change.\n Uses \"sources\" from the tasks definition to determine which files to watch.\n\n $ mise watch build --glob src/**/*.rs\n Runs the \"build\" tasks but specify the files to watch with a glob pattern.\n This overrides the \"sources\" from the tasks definition.\n\n $ mise watch build --clear\n Extra arguments are passed to watchexec. See `watchexec --help` for details.\n\n $ mise watch serve --watch src --exts rs --restart\n Starts an api server, watching for changes to \"*.rs\" files in \"./src\" and kills/restarts the server when they change.\n"
flag "-t --task-flag" help="Tasks to run" var=#true hide=#true {
arg <TASK_FLAG>
Expand Down
2 changes: 1 addition & 1 deletion src/cli/watch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use std::path::PathBuf;
/// It must be installed for this command to work, but you can install it with `mise use -g watchexec@latest`.
///
/// For more advanced process management (daemon management, auto-restart, readiness checks,
/// cron scheduling), see mise's sister project: https://pitchfork.jdx.dev
/// cron scheduling), see mise's sister project: https://pitchfork.en.dev
#[derive(Debug, clap::Args)]
#[clap(visible_alias = "w", verbatim_doc_comment, after_long_help = AFTER_LONG_HELP)]
pub struct Watch {
Expand Down
Loading