Skip to content

PLCommand v1.2.1

Compare
Choose a tag to compare
@jihoonahn jihoonahn released this 11 Sep 00:01
· 43 commits to main since this release

What's Changed

Change the style of the previously supported command (Git, Swift Package) and support it again.

Support Git Command

@Command(\.git) var git

git.`init`()
git.add()
git.clone(repositoryURL)
git.commit("comment")
git.push()
git.pull(remote: "origin")
git.checkout(branch: "gh-page")

Support Swift Package Command

@Command(\.package) var swiftPackage

swiftPackage.create()
swiftPackage.create(type: .executable)
swiftPackage.update()
swiftPackage.generateXcodeproj()
swiftPackage.build()
swiftPackage.test()