Skip to content

Commit

Permalink
fix usage instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JonShort committed Sep 18, 2023
1 parent d9ab063 commit c30f407
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ _Execute the binary_

### Options

`--dry-run` | `-dr` - list dependencies which would be bumped, but don't update them
`--help` | `-h` - print help to the terminal

`--dry-run` | `-d` - list dependencies which would be bumped, but don't update them

`--latest` | `-l` - bump dependencies to latest possible version (includes major changes)

`--legacy-peer-deps` | `-lpd` - includes this option in the npm install under the hood
`--legacy-peer-deps` - includes this option in the npm install under the hood

`--patch` | `-p` - only include patch version updates (experimental)

`--verbose` | `-vb` - include all possible messages in console output (e.g. warnings from npm itself)
`--verbose` | `-v` - include all possible messages in console output (e.g. warnings from npm itself)

## Compiling
_Generate a release build_
Expand Down
2 changes: 1 addition & 1 deletion src/utility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct Args {
pub latest: bool,

#[arg(short, long)]
///Update to latest patch version only
///Update to latest patch version only (experimental)
pub patch: bool,

#[arg(long)]
Expand Down

0 comments on commit c30f407

Please sign in to comment.