Skip to content

Commit

Permalink
update to yargs 15.4.1 for coercive reasons part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Jul 15, 2024
1 parent cc5dcbf commit 9bb7ead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Added `appConfig` to `lando` for more powerful tasks
* Added `primary` to `appConfig` for more powerful tasks
* Added `otable` to `formatData`
* Updated to `yargs@13.3.0` for better `--` handling
* Updated to `yargs@15.4.1` for better `--` handling

## v3.21.2 - [June 20, 2024](https://github.com/lando/cli/releases/tag/v3.21.2)

Expand Down
1 change: 1 addition & 0 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ module.exports = class Cli {

// Loop through the tasks and add them to the CLI
_.forEach(_.sortBy(tasks, 'command'), task => {
console.log(task)

Check failure on line 356 in lib/cli.js

View workflow job for this annotation

GitHub Actions / lint (ubuntu-22.04, 18)

Missing semicolon

Check failure on line 356 in lib/cli.js

View workflow job for this annotation

GitHub Actions / docs-tests (ubuntu-22.04, 18)

Missing semicolon
if (_.has(task, 'handler')) yargs.command(task);
else yargs.command(this.parseToYargs(task, config));
});
Expand Down

0 comments on commit 9bb7ead

Please sign in to comment.