Skip to content

Commit

Permalink
fix(run): Re-order --npm-client in help output
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Jan 15, 2019
1 parent 68a0685 commit bfa89bf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions commands/run/command.js
Expand Up @@ -17,6 +17,13 @@ exports.builder = yargs => {
type: "string",
})
.options({
"npm-client": {
group: "Command Options:",
describe: "Executable used to run scripts (npm, yarn, pnpm, ...).",
defaultDescription: "npm",
type: "string",
requiresArg: true,
},
stream: {
group: "Command Options:",
describe: "Stream output with lines prefixed by package.",
Expand All @@ -27,13 +34,6 @@ exports.builder = yargs => {
describe: "Run script with unlimited concurrency, streaming prefixed output.",
type: "boolean",
},
"npm-client": {
group: "Command Options:",
describe: "Executable used to run scripts (npm, yarn, pnpm, ...).",
defaultDescription: "npm",
type: "string",
requiresArg: true,
},
"no-bail": {
group: "Command Options:",
describe: "Continue running script despite non-zero exit in a given package.",
Expand Down

0 comments on commit bfa89bf

Please sign in to comment.