Skip to content

Commit

Permalink
Adjust CLI description for the output style
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Dec 12, 2023
1 parent b677c95 commit 318b2a7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/cli/commands/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,13 @@ build.builder = function(cli) {
})
.option("output-style", {
describe:
"Processes build results into a specific directory structure. " +
"\"Flat\" omits the project namespace and the \"resources\" directory. This is" +
" currently only supported for projects of type 'library'. Projects of " +
"type 'application' always result in a flat output." +
"No other dependencies can be included in the build result.",
"Processes build results into a specific directory structure. \r\n\r\n" +
"- Flat: Omits the project namespace and the \"resources\" directory.\r\n" +
"- Namespace: Respects the project namespace and the \"resources\" directory, " +
"maintaining the original structure.\r\n" +
"- Default: The default directory structure for every project type. For applications, " +
"this is identical to \"Flat\", and for libraries, it is \"Namespace\". Other types have a " +
"more distinct default output style.",
type: "string",
default: "Default",
choices: ["Default", "Flat", "Namespace"],
Expand Down

0 comments on commit 318b2a7

Please sign in to comment.