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
4 changes: 2 additions & 2 deletions src/command/render/cmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const renderCommand = new Command()
)
.option(
"--output-dir",
"Write output to DIR (path is input/project relative)",
"Write output to DIR, which is first deleted (path is input/project relative)",
)
.option(
"-M, --metadata",
Expand Down Expand Up @@ -89,7 +89,7 @@ export const renderCommand = new Command()
)
.option(
"--no-clean",
"Do not clean project output-dir prior to render",
"Do not delete output-dir prior to render",
)
.option(
"--debug",
Expand Down
6 changes: 5 additions & 1 deletion src/resources/schema/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
- `project`: Use the root directory of the project.
output-dir:
path:
description: "Output directory"
description:
short: "Output directory"
long: >
The directory in which all outputs are placed. If a directory with this name
already exists, it will be deleted and replaced with a new directory.
lib-dir:
path:
description: "HTML library (JS/CSS/etc.) directory"
Expand Down
Loading