Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Nov 17, 2023
1 parent 6c79203 commit 350dd8f
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,17 @@ Or if you want to use zsh.
zshCommand.run("command")
```

Or if you want to use Makefile command.

```swift
@Command(\.make) var makeCommand
makeCommand.run("command")
```

## Frequently Used Commands
PLCommand supports frequently used features.

Support ``Git`` Command
Support `Git` Command
```swift
@Command(\.git) var git

Expand All @@ -60,7 +66,7 @@ git.pull(remote: "origin")
git.checkout(branch: "gh-page")
```

Support ``Swift Package`` Command
Support `Swift Package` Command
```swift
@Command(\.package) var swiftPackage

Expand All @@ -72,6 +78,18 @@ swiftPackage.build()
swiftPackage.test()
```

Support `Fastlane` Command
```swift
@Command(\.fastlane) var fastlane

fastlane.`init`()
fastlane.tests()
fastlane.snapshot()
fastlane.deliver()
fastlane.frameit()
fastlane.run("fastlane command")
```

### Extension
PLCommand is easier to scale.

Expand Down

0 comments on commit 350dd8f

Please sign in to comment.