We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my project, we don't use Carthage only SwiftPM at this moment. So, we want to use needle via SwiftPM.
This is a good option, but I have two projects which use needle with different version. I want to manage the version locally.
In my project, cli/Package.swift exists.
cli/Package.swift
// swift-tools-version:5.1 import PackageDescription let package = Package( name: "CommandLines", dependencies: [ .package(url: "https://github.com/yonaskolb/XcodeGen", from: "2.17.0"), .package(url: "https://github.com/horita-yuya/needle", .branch("master")) ] )
Using the following command, I use needle via SwiftPM.
$ swift run --package-path cli -c release needle version 0.16.0
How about support this officially?
Thankyou.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How about distribute generator exectable via Swift Package Manager? like this
In my project, we don't use Carthage only SwiftPM at this moment. So, we want to use needle via SwiftPM.
Homebrew?
This is a good option, but I have two projects which use needle with different version. I want to manage the version locally.
Example
In my project,
cli/Package.swift
exists.Using the following command, I use needle via SwiftPM.
How about support this officially?
Thankyou.
The text was updated successfully, but these errors were encountered: