Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ justx run -g docker:shell my-image

## Local recipes and modules

If you run `justx` from a directory that contains a `justfile`, its recipes appear automatically in the TUI. **justx** also supports `just`'s native [module system](https://just.systems/man/en/modules1.html) — any modules declared in your justfile are discovered and shown as separate sources.
If you run `justx` from a directory that contains a `justfile`, its recipes appear automatically in the TUI. **justx** also supports `just`'s native [module system](https://just.systems/man/en/modules.html) — any modules declared in your justfile are discovered and shown as separate sources.

```just
# justfile
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dev:

## Organising with modules

As your justfile grows, you can split recipes into separate files using `just`'s native [module system](https://just.systems/man/en/modules1190.html). Declare a module in your root justfile with `mod`, and `just` looks for the source file in this order:
As your justfile grows, you can split recipes into separate files using `just`'s native [module system](https://just.systems/man/en/modules.html). Declare a module in your root justfile with `mod`, and `just` looks for the source file in this order:

- `<name>.just`
- `<name>/mod.just`
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ navigate to the recipe you want to run, and press `Enter`. If the recipe has inp

If you run `justx` from a directory that already contains a `justfile`, it will appear automatically in the Sources pane alongside your global recipes — no extra setup needed.

Any [modules](https://just.systems/man/en/modules1.html) declared in your justfile are also discovered and shown as separate sources in the TUI.
Any [modules](https://just.systems/man/en/modules.html) declared in your justfile are also discovered and shown as separate sources in the TUI.

## Verify your setup

Expand Down
2 changes: 1 addition & 1 deletion kitchen-sink-example.just
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ justwords:
> /tmp/justwords

# Subsequent dependencies
# https://just.systems/man/en/chapter_37.html
# https://just.systems/man/en/dependencies.html#running-recipes-at-the-end-of-a-recipe
# To test, run `$ just -f test-suite.just b`
a:
echo 'A!'
Expand Down
Loading