Skip to content

Commit

Permalink
deploy: 687007a
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Jul 14, 2024
1 parent 793b571 commit 6dd12e2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions man/en/chapter_24.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ <h3 id="listing-available-recipes"><a class="header" href="#listing-available-re
mod bar
$ cat bar.just
baz:
$ just --unstable foo bar
$ just foo bar
Available recipes:
baz
$ just --unstable foo::bar
$ just foo::bar
Available recipes:
baz
</code></pre>
Expand Down
11 changes: 6 additions & 5 deletions man/en/chapter_56.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,10 @@ <h1 class="menu-title">Just Programmer&#x27;s Manual</h1>
<div id="content" class="content">
<main>
<h3 id="modules1190"><a class="header" href="#modules1190">Modules<sup>1.19.0</sup></a></h3>
<p>A <code>justfile</code> can declare modules using <code>mod</code> statements. <code>mod</code> statements are
currently unstable, so you’ll need to use the <code>--unstable</code> flag,
<code>set unstable</code>, or set the <code>JUST_UNSTABLE</code> environment variable to use them.</p>
<p>A <code>justfile</code> can declare modules using <code>mod</code> statements.</p>
<p><code>mod</code> statements were stabilized in <code>just</code><sup>master</sup>. In earlier
versions, you’ll need to use the <code>--unstable</code> flag, <code>set unstable</code>, or set the
<code>JUST_UNSTABLE</code> environment variable to use them.</p>
<p>If you have the following <code>justfile</code>:</p>
<pre><code class="language-mf">mod bar

Expand All @@ -194,11 +195,11 @@ <h3 id="modules1190"><a class="header" href="#modules1190">Modules<sup>1.19.0</s
variables defined in one submodule cannot be used in another, and each module
uses its own settings.</p>
<p>Recipes in submodules can be invoked as subcommands:</p>
<pre><code class="language-sh">$ just --unstable bar b
<pre><code class="language-sh">$ just bar b
B
</code></pre>
<p>Or with path syntax:</p>
<pre><code class="language-sh">$ just --unstable bar::b
<pre><code class="language-sh">$ just bar::b
B
</code></pre>
<p>If a module is named <code>foo</code>, just will search for the module file in <code>foo.just</code>,
Expand Down
15 changes: 8 additions & 7 deletions man/en/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -703,10 +703,10 @@ <h4 id="makefile-syntax-highlighting"><a class="header" href="#makefile-syntax-h
mod bar
$ cat bar.just
baz:
$ just --unstable foo bar
$ just foo bar
Available recipes:
baz
$ just --unstable foo::bar
$ just foo::bar
Available recipes:
baz
</code></pre>
Expand Down Expand Up @@ -2534,9 +2534,10 @@ <h4 id="outside-recipe-bodies"><a class="header" href="#outside-recipe-bodies">O
</code></pre>
<p>Missing source files for optional imports do not produce an error.</p>
<div style="break-before: page; page-break-before: always;"></div><h3 id="modules1190"><a class="header" href="#modules1190">Modules<sup>1.19.0</sup></a></h3>
<p>A <code>justfile</code> can declare modules using <code>mod</code> statements. <code>mod</code> statements are
currently unstable, so you’ll need to use the <code>--unstable</code> flag,
<code>set unstable</code>, or set the <code>JUST_UNSTABLE</code> environment variable to use them.</p>
<p>A <code>justfile</code> can declare modules using <code>mod</code> statements.</p>
<p><code>mod</code> statements were stabilized in <code>just</code><sup>master</sup>. In earlier
versions, you’ll need to use the <code>--unstable</code> flag, <code>set unstable</code>, or set the
<code>JUST_UNSTABLE</code> environment variable to use them.</p>
<p>If you have the following <code>justfile</code>:</p>
<pre><code class="language-mf">mod bar

Expand All @@ -2551,11 +2552,11 @@ <h4 id="outside-recipe-bodies"><a class="header" href="#outside-recipe-bodies">O
variables defined in one submodule cannot be used in another, and each module
uses its own settings.</p>
<p>Recipes in submodules can be invoked as subcommands:</p>
<pre><code class="language-sh">$ just --unstable bar b
<pre><code class="language-sh">$ just bar b
B
</code></pre>
<p>Or with path syntax:</p>
<pre><code class="language-sh">$ just --unstable bar::b
<pre><code class="language-sh">$ just bar::b
B
</code></pre>
<p>If a module is named <code>foo</code>, just will search for the module file in <code>foo.just</code>,
Expand Down
2 changes: 1 addition & 1 deletion man/en/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion man/en/searchindex.json

Large diffs are not rendered by default.

0 comments on commit 6dd12e2

Please sign in to comment.