-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
# swift-dependency-updater | ||
|
||
The Swift Dependency Updater is a tool to automatically update dependencies of your swift package manager projects. Unlike `swift package update` it also checks if there are updates which require adjustments for the versions specified in the `Package.swift` file | ||
|
||
## Installation | ||
|
||
### [Mint](https://github.com/yonaskolb/mint) | ||
``` | ||
mint install Nef10/swift-dependency-updater | ||
``` | ||
|
||
### Swift Package Manager | ||
``` | ||
git clone https://github.com/Nef10/swift-dependency-updater.git | ||
$ cd swift-dependency-updater | ||
$ swift run swift-dependency-updater | ||
``` | ||
|
||
## Usage | ||
|
||
### List all dependencies and possible updates: | ||
|
||
`swift-dependency-updater list [<folder>] [--exclude-indirect] [--updates-only]` | ||
|
||
### Help | ||
|
||
Run `swift-dependency-updater --help` for a full list of supported commands, and `swift-dependency-updater help <subcommand>` for detailed help on a specific command. | ||
|
||
## Inspiration | ||
|
||
The tool was inspired by [vintage](https://github.com/vinhnx/vintage), [spm-dependencies-checker](https://github.com/sbertix/spm-dependencies-checker), and [swift-package-dependencies-check](https://github.com/MarcoEidinger/swift-package-dependencies-check). |