my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

3 years ago
  1. # Swift Package Manager
  2. ## Description
  3. This plugin provides a few utilities that make you faster on your daily work with the [Swift Package Manager](https://github.com/apple/swift-package-manager), as well as autocompletion for Swift 5.1.
  4. To start using it, add the `swiftpm` plugin to your `plugins` array in `~/.zshrc`:
  5. ```zsh
  6. plugins=(... swiftpm)
  7. ```
  8. ## Aliases
  9. | Alias | Description | Command |
  10. |-------|-------------------------------------|------------------------------------|
  11. | `spi` | Initialize a new package | `swift package init` |
  12. | `spf` | Fetch package dependencies | `swift package fetch` |
  13. | `spu` | Update package dependencies | `swift package update` |
  14. | `spx` | Generates an Xcode project | `swift package generate-xcodeproj` |
  15. | `sps` | Print the resolved dependency graph | `swift package show-dependencies` |
  16. | `spd` | Print parsed Package.swift as JSON | `swift package dump-package` |